Files
comet/deployment/nginx.conf
T
2025-02-28 22:12:57 +01:00

11 lines
312 B
Nginx Configuration File

server {
server_name example.com;
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}