nginx nodejs 配置
发布于 14 小时前 作者 wtcsy 100 次浏览 来自 问答

就是希望 静态文件都是nginx处理 接口node来处理 配置大概是这样 server { listen 80; server_name localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /home/conmmon;
        index  index.html index.htm;
    }

    error_page  404              /404.html;

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }


}

server {
    listen 80;
    server_name www.hahaxx.com/test;
    location /{
        proxy_pass http://127.0.0.1:3000;
    }
}

根目录我想指到 /home/conmmon 可以访问里面的静态资源
然后接口请求 我想通过访问127.0.0.1:3000 才处理接口 然后 server_name www.hahaxx.com/test
发现是不行的 大家是什么设置的啊 !!!

1 回复

如果你用的是express,要去掉app.use express.static(path.join(__dirname, 'public'))

回到顶部