Merge pull request #606 from realbuz/patch-2

Update komga.subfolder.conf.sample
This commit is contained in:
driz 2023-10-09 15:29:39 -04:00 committed by GitHub
commit 8f4d3afa30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
## Version 2023/02/05
## Version 2023/09/05
# make sure that your komga container is named komga
# make sure that komga is set to work with the base url /komga/
# First make sure your Container has set an Baseurl set via docker-compose File "envirnoment: SERVER_SERVLET_CONTEXT_PATH=/komga" and recreate the container.
@ -24,7 +24,7 @@ location ^~ /komga/ {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app komga;
set $upstream_port 8080 ;
set $upstream_port 25600 ;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
@ -34,7 +34,7 @@ location ^~ /komga/api {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app komga;
set $upstream_port 8080;
set $upstream_port 25600;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}