Created
April 21, 2018 19:40
-
-
Save YounesNAJA/7a0d97507040972c5d00d810e2244d6e to your computer and use it in GitHub Desktop.
Nginx Reverse Proxy for Jenkins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name localhost; | |
| access_log /var/log/nginx/jenkins _8080_proxypass_access.log; | |
| error_log /var/log/nginx/jenkins_8080_proxypass_access.log; | |
| location / { | |
| proxy_pass http://127.0.0.1:7070/; | |
| include /etc/nginx/proxy.conf; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| proxy_redirect off; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| client_max_body_size 10m; | |
| client_body_buffer_size 128k; | |
| proxy_connect_timeout 90; | |
| proxy_send_timeout 90; | |
| proxy_read_timeout 90; | |
| proxy_buffers 32 4k; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment