Skip to content

Instantly share code, notes, and snippets.

@sauliuz
Last active November 7, 2015 09:43
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 sauliuz/702d5e0d993180a40e1e to your computer and use it in GitHub Desktop.
Save sauliuz/702d5e0d993180a40e1e to your computer and use it in GitHub Desktop.
# Specific Nginx configuration
# Redirect to Jenkins on port 8080
upstream app_server {
server 127.0.0.1:8080 fail_timeout=0;
}
# Main Nginx config
server {
listen 80;
listen [::]:80 default ipv6only=on;
# Make site accessible from http://localhost/
server_name localhost;
# Catch all
location / {
# Adding basic authorisation to Nginx
auth_basic "Please Login";
auth_basic_user_file /etc/nginx/.htpasswd;
# Header setup
proxy_set_header Authorization "";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://app_server;
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment