Skip to content

Instantly share code, notes, and snippets.

@Fantastic-Dave
Created August 17, 2022 14:51
Show Gist options
  • Save Fantastic-Dave/4304563372dcbccc3aaf5ecb3ab0ca00 to your computer and use it in GitHub Desktop.
Save Fantastic-Dave/4304563372dcbccc3aaf5ecb3ab0ca00 to your computer and use it in GitHub Desktop.
configuration required for the mixitup bots overlay to be reverse proxied across my lan to my streaming pc :)
server {
listen 192.168.1.55:80;
location / {
proxy_pass http://localhost:8111;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment