Skip to content

Instantly share code, notes, and snippets.

@Shillos
Forked from ItsOnlyBinary/kiwiirc-nginx.conf
Created May 6, 2020 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shillos/b825665e6a516cd181c9f7efdeac44bd to your computer and use it in GitHub Desktop.
Save Shillos/b825665e6a516cd181c9f7efdeac44bd to your computer and use it in GitHub Desktop.
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