Skip to content

Commit 3d03b6d

Browse files
authored
Merge branch 'linuxserver:master' into master
2 parents 647ee20 + 212a7d5 commit 3d03b6d

12 files changed

+332
-10
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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,15 @@ server {
6464

6565
# Feed for Kobo
6666
location /kobo/ {
67-
include /config/nginx/proxy.conf;
6867
include /config/nginx/resolver.conf;
6968
set $upstream_app calibre-web;
7069
set $upstream_port 8083;
7170
set $upstream_proto http;
7271
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
72+
proxy_set_header X-Forwarded-Host $http_host;
7373
proxy_set_header X-Scheme $scheme;
74-
proxy_buffer_size 32k;
74+
proxy_buffer_size 128k;
75+
proxy_buffers 4 256k;
76+
proxy_busy_buffers_size 256k;
7577
}
7678
}

calibre-web.subfolder.conf.sample

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,14 @@ location ^~ /calibre-web/opds/ {
5151

5252
# Feed for Kobo
5353
location ^~ /calibre-web/kobo/ {
54-
include /config/nginx/proxy.conf;
5554
include /config/nginx/resolver.conf;
5655
set $upstream_app calibre-web;
5756
set $upstream_port 8083;
5857
set $upstream_proto http;
5958
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
6059
proxy_set_header X-Scheme $scheme;
6160
proxy_set_header X-Script-Name /calibre-web;
62-
proxy_buffer_size 32k;
61+
proxy_buffer_size 128k;
62+
proxy_buffers 4 256k;
63+
proxy_busy_buffers_size 256k;
6364
}

cryptgeon.subdomain.conf.sample

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## Version 2025/01/10
2+
# make sure that your cryptgeon container is named cryptgeon
3+
# make sure that your dns has a cname set for cryptgeon
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name cryptgeon.*;
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 cryptgeon;
41+
set $upstream_port 8000;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
}
45+
}

frigate.subdomain.conf.sample

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## Version 2024/07/16
1+
## Version 2025/01/16
22
# make sure that your frigate container is named frigate
33
# make sure that your dns has a cname set for frigate
4+
# if you are on a version older than 0.14.0 set upstream_port to 5000 and upstream_proto to http
45

56
server {
67
listen 443 ssl;
@@ -38,8 +39,8 @@ server {
3839
include /config/nginx/proxy.conf;
3940
include /config/nginx/resolver.conf;
4041
set $upstream_app frigate;
41-
set $upstream_port 5000;
42-
set $upstream_proto http;
42+
set $upstream_port 8971;
43+
set $upstream_proto https;
4344
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4445

4546
}

hoarder.subdomain.conf.sample

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
## Version 2024/07/16
2+
# make sure that your hoarder container is named hoarder
3+
# make sure that your dns has a cname set for hoarder
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name hoarder.*;
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 hoarder;
41+
set $upstream_port 3000;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
45+
}
46+
47+
location ~ (/hoarder)?/api {
48+
include /config/nginx/proxy.conf;
49+
include /config/nginx/resolver.conf;
50+
set $upstream_app hoarder;
51+
set $upstream_port 3000;
52+
set $upstream_proto http;
53+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
54+
55+
}
56+
}
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
## Version 2025/01/30
2+
# make sure that your immich container is named immich_server
3+
# make sure that your dns has a cname set for immich
4+
# immich v1.118+ only. For earlier versions, change $upstream_port to 3001
5+
6+
server {
7+
listen 443 ssl;
8+
listen [::]:443 ssl;
9+
10+
server_name immich.*;
11+
12+
include /config/nginx/ssl.conf;
13+
14+
client_max_body_size 0;
15+
16+
# enable for ldap auth (requires ldap-location.conf in the location block)
17+
#include /config/nginx/ldap-server.conf;
18+
19+
# enable for Authelia (requires authelia-location.conf in the location block)
20+
#include /config/nginx/authelia-server.conf;
21+
22+
# enable for Authentik (requires authentik-location.conf in the location block)
23+
#include /config/nginx/authentik-server.conf;
24+
25+
location / {
26+
# enable the next two lines for http auth
27+
#auth_basic "Restricted";
28+
#auth_basic_user_file /config/nginx/.htpasswd;
29+
30+
# enable for ldap auth (requires ldap-server.conf in the server block)
31+
#include /config/nginx/ldap-location.conf;
32+
33+
# enable for Authelia (requires authelia-server.conf in the server block)
34+
#include /config/nginx/authelia-location.conf;
35+
36+
# enable for Authentik (requires authentik-server.conf in the server block)
37+
#include /config/nginx/authentik-location.conf;
38+
39+
include /config/nginx/proxy.conf;
40+
include /config/nginx/resolver.conf;
41+
set $upstream_app immich_server;
42+
set $upstream_port 2283;
43+
set $upstream_proto http;
44+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
45+
46+
}
47+
48+
location ~ (/immich)?/api {
49+
include /config/nginx/proxy.conf;
50+
include /config/nginx/resolver.conf;
51+
set $upstream_app immich_server;
52+
set $upstream_port 2283;
53+
set $upstream_proto http;
54+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
55+
56+
}
57+
}

jellyfin.subdomain.conf.sample

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2024/08/22
1+
## Version 2025/01/11
22
# make sure that your jellyfin container is named jellyfin
33
# make sure that your dns has a cname set for jellyfin
44
# if jellyfin is running in bridge mode and the container is named "jellyfin", the below config should work as is
@@ -22,6 +22,7 @@ server {
2222
set $upstream_app jellyfin;
2323
set $upstream_port 8096;
2424
set $upstream_proto http;
25+
add_header Access-Control-Allow-Origin "luna://com.webos.service.config" always;
2526
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
2627

2728
proxy_set_header Range $http_range;
@@ -34,6 +35,7 @@ server {
3435
set $upstream_app jellyfin;
3536
set $upstream_port 8096;
3637
set $upstream_proto http;
38+
add_header Access-Control-Allow-Origin "luna://com.webos.service.config" always;
3739
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
3840

3941
}

jellyfin.subfolder.conf.sample

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2025/01/11
22
# make sure that your jellyfin container is named jellyfin
33
# if jellyfin is running in bridge mode and the container is named "jellyfin", the below config should work as is
44
# if not, replace the line "set $upstream_app jellyfin;" with "set $upstream_app <containername>;"
@@ -15,6 +15,7 @@ location ^~ /jellyfin/ {
1515
set $upstream_app jellyfin;
1616
set $upstream_port 8096;
1717
set $upstream_proto http;
18+
add_header Access-Control-Allow-Origin "luna://com.webos.service.config" always;
1819
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
1920

2021
proxy_set_header Range $http_range;
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## Version 2025/01/07
2+
# make sure that your onetimesecret container is named onetimesecret
3+
# make sure that your dns has a cname set for onetimesecret
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name onetimesecret.*;
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 onetimesecret;
41+
set $upstream_port 3000;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
}
45+
}

0 commit comments

Comments
 (0)