重写路径的Nginx代理配置

时间:2019-06-29 17:59:52

标签: node.js angular nginx nginx-reverse-proxy

我制作了一个可与nodeJS服务器通信的角度应用程序。我终于实现了使用以下配置文件配置angular的开发Web服务器的代理,并且一切正常:

{  
    "/api/*": 
    {    
        "target": "http://localhost:8080",    
        "secure": false,    
        "pathRewrite": {"^/api" : ""}
    },
    "/sock/*": 
    {
        "target": "http://localhost:8060/socket.io/"
    }
}

然后,我尝试使用nginx Web服务器部署应用程序,并使用以下配置来配置服务器和代理:

server {
        listen 3600;
        listen [::]:3600;

        server_name localhost;

        root /home/ubuntu/mahe/tchernobyl/angular_tchernobyl/dist/tchernobyl;
        index index.html index.htm index.nginx-debian.html;

        location / {
                try_files $uri $uri/ /index.html;
        }

        location /sock {
                proxy_pass http://localhost:8060/socket.io;
        }

        location /api {
                   proxy_pass http://localhost:8080;
                   sub_filter /api/ /;
        }
}

以某种方式最终似乎可以与socket.io一起使用,每次刷新时我只有一条错误消息,我不知道为什么:

WebSocket connection to 'ws://localhost:8100/sock/?EIO=3&transport=websocket&sid=qU-TS9vQwIPwZej7AAAK' failed: Error during WebSocket handshake: Unexpected response code: 400

编辑:通过应用此解决方案https://github.com/socketio/socket.io/issues/1942#issuecomment-82352072

解决了这个非常次要的问题

但是主要的问题是,我可以通过/ api / [key]完全访问提供数据的Express服务器,但无法获取任何数据。解释一下:我的Express服务器在8080上运行,网络在3600上运行。如果我输入http://localhost:8080/data,则得到数据,但如果我输入http://localhost:3600/api/data,则得到“无法获取/ data”响应。 (注意我用'sub_filter / api / /;'重写了)

我在控制台中收到以下消息:

Refused to execute a script because its hash, its nonce, or 'unsafe-inline' appears in neither the script-src directive nor the default-src directive of the Content Security Policy.

1 个答案:

答案 0 :(得分:0)

这是“ sub_filter / api / /;”并没有按照我的想法重写URL,而是将其替换为

rewrite /foo/(.*) /$1 break;

,终于奏效了。

除了可以在初始编辑的消息中找到的此项调整:https://github.com/socketio/socket.io/issues/1942#issuecomment-82352072