Skip to content

Instantly share code, notes, and snippets.

@levlaz
Created January 24, 2015 01:58
Show Gist options
  • Save levlaz/29ee93d32b4ed232a7b9 to your computer and use it in GitHub Desktop.
Save levlaz/29ee93d32b4ed232a7b9 to your computer and use it in GitHub Desktop.
nginx jenk
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location / {
proxy_pass http://10.0.3.102:80;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment