Created
May 18, 2015 23:23
-
-
Save Arzte/a2c044e18a721ced2bc6 to your computer and use it in GitHub Desktop.
nginx config for shout-irc
This file contains 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 / { | |
rewrite ^/irc$ /irc/ redirect; | |
rewrite ^/irc/(.*)$ /$1 break; | |
proxy_pass http://127.0.0.1:8124; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection $http_connection; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment