1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kavita_ynh.git synced 2024-09-03 19:26:30 +02:00
kavita_ynh/conf/nginx.conf

17 lines
510 B
Nginx Configuration File
Raw Normal View History

2022-11-16 19:57:00 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2023-05-25 09:57:22 +02:00
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; aio threads;
proxy_set_header X-Forwarded-Proto $scheme;
2022-11-16 19:57:00 +01:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
2023-05-23 15:01:47 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2022-11-16 19:57:00 +01:00
}