Files
money/ws/docker/nginx.conf
2021-03-30 16:40:02 -03:00

17 lines
301 B
Nginx Configuration File

upstream websocket {
server ws-php:9010;
}
server {
listen 80;
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
}
}