Skip to content

Instantly share code, notes, and snippets.

@scheibinger
Forked from rdegges/proxy_nginx.sh
Created April 13, 2016 04:43
Show Gist options
  • Save scheibinger/69abbf4d9b191cea4b5478dae79391a8 to your computer and use it in GitHub Desktop.
Save scheibinger/69abbf4d9b191cea4b5478dae79391a8 to your computer and use it in GitHub Desktop.
Create a HTTP proxy for jenkins using NGINX.
sudo aptitude -y install nginx
cd /etc/nginx/sites-available
sudo rm default
sudo cat > jenkins
upstream app_server {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80;
listen [::]:80 default ipv6only=on;
server_name ci.yourcompany.com;
location / {
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;
}
}
}
^D # Hit CTRL + D to finish writing the file
sudo ln -s /etc/nginx/sites-available/jenkins /etc/nginx/sites-enabled/
sudo service nginx restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment