nginx配置支援websocket協議wss

jiduoduo發表於2024-07-03

其實wss與https,並沒有太大的差別,只是需要升級下協議。

在原來的配製下增加下面即可:

proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
  • Connection: Upgrade:表示要升級協議
  • Upgrade: websocket:表示要升級到websocket協議。

相關文章