Skip to content

Commit 69296f0

Browse files
authored
Merge branch 'master' into de/update_immich_config
2 parents 899af85 + 8625ed9 commit 69296f0

File tree

5 files changed

+90
-6
lines changed

5 files changed

+90
-6
lines changed

babybuddy.subdomain.conf.sample

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

@@ -43,4 +43,14 @@ server {
4343
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4444

4545
}
46+
47+
location ~ ^/api/ {
48+
include /config/nginx/proxy.conf;
49+
include /config/nginx/resolver.conf;
50+
set $upstream_app babybuddy;
51+
set $upstream_port 8000;
52+
set $upstream_proto http;
53+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
54+
55+
}
4656
}

calibre-web.subdomain.conf.sample

Lines changed: 16 additions & 2 deletions
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

@@ -61,4 +61,18 @@ server {
6161
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
6262
proxy_set_header X-Scheme $scheme;
6363
}
64-
}
64+
65+
# Feed for Kobo
66+
location /kobo/ {
67+
include /config/nginx/resolver.conf;
68+
set $upstream_app calibre-web;
69+
set $upstream_port 8083;
70+
set $upstream_proto http;
71+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
72+
proxy_set_header X-Forwarded-Host $http_host;
73+
proxy_set_header X-Scheme $scheme;
74+
proxy_buffer_size 128k;
75+
proxy_buffers 4 256k;
76+
proxy_busy_buffers_size 256k;
77+
}
78+
}

calibre-web.subfolder.conf.sample

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,17 @@ location ^~ /calibre-web/opds/ {
4848
proxy_set_header X-Scheme $scheme;
4949
proxy_set_header X-Script-Name /calibre-web;
5050
}
51+
52+
# Feed for Kobo
53+
location ^~ /calibre-web/kobo/ {
54+
include /config/nginx/resolver.conf;
55+
set $upstream_app calibre-web;
56+
set $upstream_port 8083;
57+
set $upstream_proto http;
58+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
59+
proxy_set_header X-Scheme $scheme;
60+
proxy_set_header X-Script-Name /calibre-web;
61+
proxy_buffer_size 128k;
62+
proxy_buffers 4 256k;
63+
proxy_busy_buffers_size 256k;
64+
}

dnsdist.subdomain.conf.sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
## Version 2024/11/26
1+
## Version 2024/12/19
22
# make sure that your container is named dnsdist
33
# make sure that your dns has a cname set for dnsdist
44

55
server {
6-
listen 443 ssl http2;
7-
listen [::]:443 ssl http2;
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
88

99
server_name dnsdist.*;
1010

romm.subdomain.conf.sample

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
## Version 2024/10/26
2+
# make sure that your romM container is named romm
3+
# make sure that your dns has a cname set for romm
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name romm.*;
10+
11+
include /config/nginx/ssl.conf;
12+
13+
client_max_body_size 0;
14+
15+
# enable for ldap auth (requires ldap-location.conf in the location block)
16+
#include /config/nginx/ldap-server.conf;
17+
18+
# enable for Authelia (requires authelia-location.conf in the location block)
19+
#include /config/nginx/authelia-server.conf;
20+
21+
# enable for Authentik (requires authentik-location.conf in the location block)
22+
#include /config/nginx/authentik-server.conf;
23+
24+
location / {
25+
# enable the next two lines for http auth
26+
#auth_basic "Restricted";
27+
#auth_basic_user_file /config/nginx/.htpasswd;
28+
29+
# enable for ldap auth (requires ldap-server.conf in the server block)
30+
#include /config/nginx/ldap-location.conf;
31+
32+
# enable for Authelia (requires authelia-server.conf in the server block)
33+
#include /config/nginx/authelia-location.conf;
34+
35+
# enable for Authentik (requires authentik-server.conf in the server block)
36+
#include /config/nginx/authentik-location.conf;
37+
38+
include /config/nginx/proxy.conf;
39+
include /config/nginx/resolver.conf;
40+
set $upstream_app romm;
41+
set $upstream_port 8080;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
45+
}
46+
}

0 commit comments

Comments
 (0)