write-ups-challenges-2024-2025/bob-the-assistant/nginx/nginx.conf
2024-11-25 22:28:00 +01:00

24 lines
496 B
Nginx Configuration File

server {
listen 80 default_server;
server_name _;
location /socket.io {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_pass http://localhost:8000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_pass http://localhost:3000;
}
}