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

18 lines
579 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__/ {
# Host and X headers
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;
# Headers to proxy websocket connections
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# Proxy to Kavita running locally on port 5000 using ssl
proxy_pass http://127.0.0.1:__PORT__;
}