Last active
November 28, 2021 17:25
-
-
Save ItsOnlyBinary/3e244106bfa4101f70f8a20c2d0e76b3 to your computer and use it in GitHub Desktop.
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
location / { | |
index index.html; | |
root /usr/share/kiwiirc/; | |
} | |
location /webirc/ { | |
# Forward incoming requests to local webircgateway socket | |
proxy_pass http://127.0.0.1:7778/webirc/; | |
# Set http version and headers | |
proxy_http_version 1.1; | |
# Add X-Forwarded-* headers | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header X-Forwarded-For $remote_addr; | |
# Allow upgrades to websockets | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
} | |
location /files/ { | |
# Forward incoming requests to local fileupload instance | |
proxy_pass http://127.0.0.1:8088/files/; | |
# Disable request and response buffering | |
proxy_request_buffering off; | |
proxy_buffering off; | |
proxy_http_version 1.1; | |
# Add X-Forwarded-* headers | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header X-Forwarded-For $remote_addr; | |
# Allow upgrades to websockets | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
client_max_body_size 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment