TheMathWizard/nginx.conf

17 lines
381 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name math-wizard;
location / {
proxy_pass http://web:8080;
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;
}
}
}