Skip to content

Instantly share code, notes, and snippets.

@Arzte
Created May 18, 2015 23:23
Show Gist options
  • Save Arzte/a2c044e18a721ced2bc6 to your computer and use it in GitHub Desktop.
Save Arzte/a2c044e18a721ced2bc6 to your computer and use it in GitHub Desktop.
nginx config for shout-irc
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