nginx之websocket(十四)

2021-01-02 05:28

阅读:1142

标签:socket   soc   pre   sock   pass   proxy   http   serve   connect   

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;
       }   
   }

nginx之websocket(十四)

标签:socket   soc   pre   sock   pass   proxy   http   serve   connect   

原文地址:https://www.cnblogs.com/pengsn/p/13671129.html


评论


亲,登录后才可以留言!