nginx websocket proxy
Posted hao.ma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx websocket proxy相关的知识,希望对你有一定的参考价值。
map $http_upgrade $connection_upgrade { default upgrade; ‘‘ close; } upstream websocket { server 127.0.0.1:2346; } server { listen 80 default; 。。。。。 location = /socket.php { proxy_pass http://websocket; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
以上是关于nginx websocket proxy的主要内容,如果未能解决你的问题,请参考以下文章
使用nginx作为websocket的proxy server