Created
August 8, 2012 20:08
-
-
Save aheadley/3298138 to your computer and use it in GitHub Desktop.
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
location /radio/streams/ { | |
proxy_buffering off; | |
proxy_ignore_client_abort off; | |
proxy_intercept_errors on; | |
proxy_next_upstream error timeout invalid_header; | |
proxy_redirect off; | |
proxy_set_header X-Host overviewer.org; | |
proxy_set_header X-Forwarded-For $remote_addr; | |
proxy_connect_timeout 10; | |
proxy_send_timeout 21600; | |
proxy_read_timeout 21600; | |
proxy_pass http://127.0.0.1:8001/; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment