Skip to content

Instantly share code, notes, and snippets.

@celaus
Created February 27, 2016 20:07
Show Gist options
  • Save celaus/ad7e5de9b931454427da to your computer and use it in GitHub Desktop.
Save celaus/ad7e5de9b931454427da to your computer and use it in GitHub Desktop.
nginx config for Mopidy's musicbox web client.
location / {
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:6680/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment