Skip to content

Commit 4ebb4fd

Browse files
2 parents 89c1685 + 07dbcd7 commit 4ebb4fd

File tree

267 files changed

+3889
-246
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+3889
-246
lines changed

.github/workflows/check_samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4.1.7
15+
uses: actions/checkout@v4.2.2
1616

1717
- name: Check Allowed File Names
1818
run: |

_template.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2024/07/16
1+
## Version 2025/07/18
22
# REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template.
33
# REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done.
44
# REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings.
@@ -7,7 +7,9 @@
77

88
server {
99
listen 443 ssl;
10+
# listen 443 quic;
1011
listen [::]:443 ssl;
12+
# listen [::]:443 quic;
1113

1214
server_name <container_name>.*;
1315

@@ -24,6 +26,9 @@ server {
2426
# enable for Authentik (requires authentik-location.conf in the location block)
2527
#include /config/nginx/authentik-server.conf;
2628

29+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
30+
#include /config/nginx/tinyauth-server.conf;
31+
2732
location / {
2833
# enable the next two lines for http auth
2934
#auth_basic "Restricted";
@@ -38,6 +43,9 @@ server {
3843
# enable for Authentik (requires authentik-server.conf in the server block)
3944
#include /config/nginx/authentik-location.conf;
4045

46+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
47+
#include /config/nginx/tinyauth-location.conf;
48+
4149
include /config/nginx/proxy.conf;
4250
include /config/nginx/resolver.conf;
4351
set $upstream_app <container_name>;

actual-server.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
## Version 2024/07/16
1+
## Version 2025/07/18
22
# make sure that your actual-server container is named actual-server
33
# make sure that your dns has a cname set for actual-server
44

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name actual-server.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530
# enable the next two lines for http auth
2631
#auth_basic "Restricted";
@@ -35,6 +40,9 @@ server {
3540
# enable for Authentik (requires authentik-server.conf in the server block)
3641
#include /config/nginx/authentik-location.conf;
3742

43+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
44+
#include /config/nginx/tinyauth-location.conf;
45+
3846
include /config/nginx/proxy.conf;
3947
include /config/nginx/resolver.conf;
4048
set $upstream_app actual-server;

adguard.subdomain.conf.sample

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

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name adguard.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530
# enable the next two lines for http auth
2631
#auth_basic "Restricted";
@@ -35,6 +40,9 @@ server {
3540
# enable for Authentik (requires authentik-server.conf in the server block)
3641
#include /config/nginx/authentik-location.conf;
3742

43+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
44+
#include /config/nginx/tinyauth-location.conf;
45+
3846
include /config/nginx/proxy.conf;
3947
include /config/nginx/resolver.conf;
4048
set $upstream_app adguard;

adminer.subdomain.conf.sample

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

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name adminer.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530

2631
# enable the next two lines for http auth
@@ -36,6 +41,9 @@ server {
3641
# enable for Authentik (requires authentik-server.conf in the server block)
3742
#include /config/nginx/authentik-location.conf;
3843

44+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
45+
#include /config/nginx/tinyauth-location.conf;
46+
3947
include /config/nginx/proxy.conf;
4048
include /config/nginx/resolver.conf;
4149
set $upstream_app adminer;

adminmongo.subdomain.conf.sample

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

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name adminmongo.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530
# enable the next two lines for http auth
2631
#auth_basic "Restricted";
@@ -35,6 +40,9 @@ server {
3540
# enable for Authentik (requires authentik-server.conf in the server block)
3641
#include /config/nginx/authentik-location.conf;
3742

43+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
44+
#include /config/nginx/tinyauth-location.conf;
45+
3846
include /config/nginx/proxy.conf;
3947
include /config/nginx/resolver.conf;
4048
set $upstream_app adminmongo;

airsonic.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
## Version 2024/07/16
1+
## Version 2025/07/18
22
# make sure that your airsonic container is named airsonic
33
# make sure that your dns has a cname set for airsonic
44
# add `server.use-forward-headers=true` to `/config/application.properties` to ensure logs contain real source IP
55

66
server {
77
listen 443 ssl;
8+
# listen 443 quic;
89
listen [::]:443 ssl;
10+
# listen [::]:443 quic;
911

1012
server_name airsonic.*;
1113

@@ -22,6 +24,9 @@ server {
2224
# enable for Authentik (requires authentik-location.conf in the location block)
2325
#include /config/nginx/authentik-server.conf;
2426

27+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
28+
#include /config/nginx/tinyauth-server.conf;
29+
2530
location / {
2631
# enable the next two lines for http auth
2732
#auth_basic "Restricted";
@@ -36,6 +41,9 @@ server {
3641
# enable for Authentik (requires authentik-server.conf in the server block)
3742
#include /config/nginx/authentik-location.conf;
3843

44+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
45+
#include /config/nginx/tinyauth-location.conf;
46+
3947
include /config/nginx/proxy.conf;
4048
include /config/nginx/resolver.conf;
4149
set $upstream_app airsonic;

apprise-api.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
## Version 2024/07/16
1+
## Version 2025/07/18
22
# make sure that your apprise-api container is named apprise-api
33
# make sure that your dns has a cname set for apprise-api
44

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name apprise-api.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530
# enable the next two lines for http auth
2631
#auth_basic "Restricted";
@@ -35,6 +40,9 @@ server {
3540
# enable for Authentik (requires authentik-server.conf in the server block)
3641
#include /config/nginx/authentik-location.conf;
3742

43+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
44+
#include /config/nginx/tinyauth-location.conf;
45+
3846
include /config/nginx/proxy.conf;
3947
include /config/nginx/resolver.conf;
4048
set $upstream_app apprise-api;

archisteamfarm.subdomain.conf.sample

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

55
server {
66
listen 443 ssl;
7+
# listen 443 quic;
78
listen [::]:443 ssl;
9+
# listen [::]:443 quic;
810

911
server_name archisteamfarm.*;
1012

@@ -21,6 +23,9 @@ server {
2123
# enable for Authentik (requires authentik-location.conf in the location block)
2224
#include /config/nginx/authentik-server.conf;
2325

26+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
27+
#include /config/nginx/tinyauth-server.conf;
28+
2429
location / {
2530
# enable the next two lines for http auth
2631
#auth_basic "Restricted";
@@ -35,6 +40,9 @@ server {
3540
# enable for Authentik (requires authentik-server.conf in the server block)
3641
#include /config/nginx/authentik-location.conf;
3742

43+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
44+
#include /config/nginx/tinyauth-location.conf;
45+
3846
include /config/nginx/proxy.conf;
3947
include /config/nginx/resolver.conf;
4048
set $upstream_app archisteamfarm;

aria2-with-webui.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2024/07/16
1+
## Version 2025/07/18
22
# make sure that your aria2 container is named aria2-with-webui
33
# make sure that your dns has a cname set for aria2
44
#
@@ -8,7 +8,9 @@
88

99
server {
1010
listen 443 ssl;
11+
# listen 443 quic;
1112
listen [::]:443 ssl;
13+
# listen [::]:443 quic;
1214

1315
server_name aria2.*;
1416

@@ -25,6 +27,9 @@ server {
2527
# enable for Authentik (requires authentik-location.conf in the location block)
2628
#include /config/nginx/authentik-server.conf;
2729

30+
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
31+
#include /config/nginx/tinyauth-server.conf;
32+
2833
location / {
2934
# enable the next two lines for http auth
3035
#auth_basic "Restricted";
@@ -39,6 +44,9 @@ server {
3944
# enable for Authentik (requires authentik-server.conf in the server block)
4045
#include /config/nginx/authentik-location.conf;
4146

47+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
48+
#include /config/nginx/tinyauth-location.conf;
49+
4250
include /config/nginx/proxy.conf;
4351
include /config/nginx/resolver.conf;
4452
set $upstream_app aria2-with-webui;

0 commit comments

Comments
 (0)