From b5acd79700578ee8892de39d69d5edc3323e27a5 Mon Sep 17 00:00:00 2001 From: thespad Date: Fri, 18 Jul 2025 20:43:04 +0100 Subject: [PATCH] Add missing confs --- mailcow.subdomain.conf.sample | 10 +++++++++- qbit-manage.subdomain.conf.sample | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/mailcow.subdomain.conf.sample b/mailcow.subdomain.conf.sample index 4782432..bb9ba49 100644 --- a/mailcow.subdomain.conf.sample +++ b/mailcow.subdomain.conf.sample @@ -1,4 +1,4 @@ -## Version 2025/05/31 +## Version 2025/07/18 # make sure that your mailcow container is named mailcow # make sure that you are aqquainted with the mailcow documentation (https://docs.mailcow.email/) # make sure you have read the most important entries in the "Get Started" section, "Post Installation Tasks -> Reverse Proxy -> Overview" and "Post Installation Tasks -> Reverse Proxy -> Nginx" sections @@ -7,7 +7,9 @@ server { listen 443 ssl; +# listen 443 quic; listen [::]:443 ssl; +# listen [::]:443 quic; # modify these to match your domain/mailcow configuration server_name mailcow.* autoconfig.* autodiscover.*; @@ -26,6 +28,9 @@ server { # enable for Authentik (requires authentik-location.conf in the location block) #include /config/nginx/authentik-server.conf; + # enable for Tinyauth (requires tinyauth-location.conf in the location block) + #include /config/nginx/tinyauth-server.conf; + location / { # enable the next two lines for http auth #auth_basic "Restricted"; @@ -40,6 +45,9 @@ server { # enable for Authentik (requires authentik-server.conf in the server block) #include /config/nginx/authentik-location.conf; + # enable for Tinyauth (requires tinyauth-server.conf in the server block) + #include /config/nginx/tinyauth-location.conf; + include /config/nginx/resolver.conf; set $upstream_app mailcow; set $upstream_port 8080; diff --git a/qbit-manage.subdomain.conf.sample b/qbit-manage.subdomain.conf.sample index 0afe3ea..ed59bcc 100644 --- a/qbit-manage.subdomain.conf.sample +++ b/qbit-manage.subdomain.conf.sample @@ -1,11 +1,13 @@ -## Version 2025/07/12 +## Version 2025/07/18 # make sure that your qbit-manage container is named qbit-manage # make sure that your dns has a cname set for qbit-manage # qbit-manage v4.5.0+ only server { listen 443 ssl; +# listen 443 quic; listen [::]:443 ssl; +# listen [::]:443 quic; server_name qbit-manage.*; @@ -22,6 +24,9 @@ server { # enable for Authentik (requires authentik-location.conf in the location block) #include /config/nginx/authentik-server.conf; + # enable for Tinyauth (requires tinyauth-location.conf in the location block) + #include /config/nginx/tinyauth-server.conf; + location / { # enable the next two lines for http auth #auth_basic "Restricted"; @@ -36,6 +41,9 @@ server { # enable for Authentik (requires authentik-server.conf in the server block) #include /config/nginx/authentik-location.conf; + # enable for Tinyauth (requires tinyauth-server.conf in the server block) + #include /config/nginx/tinyauth-location.conf; + include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app qbit-manage;