Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@chriskief
Created December 7, 2013 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskief/7837322 to your computer and use it in GitHub Desktop.
Save chriskief/7837322 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name jira.example.com;
access_log /var/log/nginx/jira.example.com.access.log main;
error_log /var/log/nginx/jira.example.com.error.log;
location / {
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
port_in_redirect off;
proxy_redirect http://jira.example.com:8080/jira /;
proxy_connect_timeout 300;
}
# deny access to .htaccess files
location ~ /\.ht {
deny all;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment