Created
April 27, 2014 20:32
-
-
Save mwohlgemuth/11355005 to your computer and use it in GitHub Desktop.
stash nginx.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
server { | |
listen stash.imp.univie.ac.at:80; | |
server_name stash.imp.univie.ac.at; | |
client_max_body_size 100m; | |
location / { | |
proxy_read_timeout 120; | |
proxy_pass https://127.0.0.1:7990; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-for $remote_addr; | |
proxy_set_header X-Forwarded-Proto http; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment