Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow The Lounge to be proxied behind a /path/ url #27

Merged
merged 1 commit into from Feb 18, 2016
Merged

Allow The Lounge to be proxied behind a /path/ url #27

merged 1 commit into from Feb 18, 2016

Commits on Feb 13, 2016

  1. Allow The Lounge to be proxied behind a /path/ url

    contains three small changes to use relative urls instead of absolute rooted at /
    
    * favicons in index.html
    * badge and pop sound in lounge.js
    * the url for the socket.io endpoint
    
    Typical use with nginx:
    
        location /path/ {
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection "upgrade";
          proxy_pass http://localhost:9000/;
        }
    
    those trailing / are important.
    gdamjan committed Feb 13, 2016
    Configuration menu
    Copy the full SHA
    cf1f24b View commit details
    Browse the repository at this point in the history