1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gamja_ynh.git synced 2024-09-03 18:36:34 +02:00
gamja_ynh/conf/nginx.conf
2022-02-05 12:03:12 +01:00

13 lines
No EOL
339 B
Nginx Configuration File

location / {
root __FINALPATH__/;
}
location /webirc/ {
proxy_pass http://127.0.0.1:__PORT__/webirc/;
proxy_read_timeout 600s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}