Last active
August 29, 2015 14:05
-
-
Save vigith/b246b7eb166ae36005c9 to your computer and use it in GitHub Desktop.
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 80 default_server; | |
| server_name *.ops.sharethis.com; | |
| location / { | |
| proxy_pass http://127.0.0.1:4180; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Scheme $scheme; | |
| proxy_connect_timeout 1; | |
| proxy_send_timeout 30; | |
| proxy_read_timeout 30; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment