mirror of
https://github.com/YunoHost-Apps/gamja_ynh.git
synced 2024-09-03 18:36:34 +02:00
13 lines
339 B
Nginx Configuration File
13 lines
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;
|
||
|
}
|