Skip to content

Commit b6b5994

Browse files
committed
Merge branch 'discount-bandit' of github.com:Findarato/reverse-proxy-confs into discount-bandit
2 parents 12460ba + e687ccc commit b6b5994

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

calibre-web.subdomain.conf.sample

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2024/07/16
1+
## Version 2024/12/06
22
# make sure that your calibre-web container is named calibre-web
33
# make sure that your dns has a cname set for calibre-web
44

@@ -62,4 +62,15 @@ server {
6262
proxy_set_header X-Scheme $scheme;
6363
}
6464

65+
# Feed for Kobo
66+
location /kobo/ {
67+
include /config/nginx/proxy.conf;
68+
include /config/nginx/resolver.conf;
69+
set $upstream_app calibre-web;
70+
set $upstream_port 8083;
71+
set $upstream_proto http;
72+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
73+
proxy_set_header X-Scheme $scheme;
74+
proxy_buffer_size 32k;
75+
}
6576
}

0 commit comments

Comments
 (0)