nginx之websocket(十四)
websocket 配置
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name localhost;
location /ws {
proxy_pass xxx;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
如果觉得文章对您有用,请点下推荐。您的支持将鼓励我继续创作!