mumui/nginx/nginx.conf

22 lines
424 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
listen 8080;
location /static/ {
alias /app/static/;
}
location / {
proxy_pass http://pushpin:7999;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}