Sha256: 88dd13a84bdf0a826eb08f9ff2651c7328b1e7e60b0516969e8e2a9710389b03
Contents?: true
Size: 511 Bytes
Versions: 3
Compression:
Stored size: 511 Bytes
Contents
# Nginx config for Jenkins CI behind a virtual host # TODO: Add SSL support as per http://gist.github.com/460906 upstream jenkins { server localhost:<%= @port %>; } server { listen 80 default; server_name jenkins.example.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_set_header Host $http_host; proxy_next_upstream error; proxy_pass http://jenkins; } }
Version data entries
3 entries across 3 versions & 1 rubygems