使用nginx作为websocket连接的代理

时间:2016-12-12 01:37:26

标签: nginx websocket

如何使用nginx作为websocket的代理? 如果我需要从clientSite.com(javascript)连接到socketSite.com:port 而且我不想向用户显示链接" socketSite.com:port"

我可以使用nginx代理重定向来自/来自websocket服务器的请求吗?

1 个答案:

答案 0 :(得分:2)

当然,你可以!使用以下配置:

location /myHandler{
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header HOST $host;
    proxy_set_header X_Forwarded_For $remote_addr;
    proxy_pass http://localhost:8880;
    proxy_redirect default;
    client_max_body_size 1000m;
} 

我使用弹簧websocket。 /myHandler是我创建websocket连接的URL,http://localhost:8880;是我的Tomcat服务器地址。 Nginx服务器和Tomcat在同一台机器上运行。