Merge branch 'discount-bandit' of github.com:Findarato/reverse-proxy-confs into discount-bandit

This commit is contained in:
Joseph Harry 2025-01-01 16:29:23 -06:00
commit b6b59941db
No known key found for this signature in database
GPG key ID: 672E70D2EB06270B

View file

@ -1,4 +1,4 @@
## Version 2024/07/16
## Version 2024/12/06
# make sure that your calibre-web container is named calibre-web
# make sure that your dns has a cname set for calibre-web
@ -62,4 +62,15 @@ server {
proxy_set_header X-Scheme $scheme;
}
# Feed for Kobo
location /kobo/ {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app calibre-web;
set $upstream_port 8083;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
proxy_set_header X-Scheme $scheme;
proxy_buffer_size 32k;
}
}