mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-05 20:41:32 -07:00
Adding kavita.subfolder.conf
This commit is contained in:
parent
79a256c79e
commit
f6b7122a75
1 changed files with 35 additions and 0 deletions
35
kavita.subfolder.conf.sample
Normal file
35
kavita.subfolder.conf.sample
Normal file
|
@ -0,0 +1,35 @@
|
|||
## Version 2023/03/27
|
||||
# Make sure you have set base url via Kavita's web gui as /kavita/ and restarted the Kavita.
|
||||
|
||||
location /kavita {
|
||||
return 301 $scheme://$host/kavita/;
|
||||
}
|
||||
|
||||
location ^~ /kavita/ {
|
||||
# enable the next two lines for http auth
|
||||
#auth_basic "Restricted";
|
||||
#auth_basic_user_file /config/nginx/.htpasswd;
|
||||
|
||||
# enable for ldap auth (requires ldap-server.conf in the server block)
|
||||
#include /config/nginx/ldap-location.conf;
|
||||
|
||||
# enable for Authelia (requires authelia-server.conf in the server block)
|
||||
#include /config/nginx/authelia-location.conf;
|
||||
|
||||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app kavita;
|
||||
set $upstream_port 5000 ;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
|
||||
}
|
||||
|
||||
location ^~ /kavita/api {
|
||||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app kavita;
|
||||
set $upstream_port 5000;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue