Skip to content

Instantly share code, notes, and snippets.

@jgram925
Last active June 15, 2019 17:50
Show Gist options
  • Save jgram925/5f95b64c4f1a1282f364d5f16f65604d to your computer and use it in GitHub Desktop.
Save jgram925/5f95b64c4f1a1282f364d5f16f65604d to your computer and use it in GitHub Desktop.
nginx.conf
server {
server_name 10.6.0.85;
listen 112;
keepalive_timeout 5;
location /static {
alias /home/joswar/projects/calibration/static/;
autoindex on;
}
location /media {
alias /home/joswar/projects/calibration/media/;
autoindex on;
}
location / {
proxy_pass http://127.0.0.1:8085;
proxy_redirect off;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment