lam / nginx.conf
iimahdii's picture
Upload nginx.conf
39200d0
raw
history blame contribute delete
178 Bytes
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}