フォロー

先日nginxでWebSocketを通したとき 

map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
なんやかんや
location ~ /socket {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_pass http://localhost:1337;
}
}
した。

ログインして会話に参加
:realtek:

思考の /dev/null