Created
August 17, 2022 14:51
-
-
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 :)
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
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