Skip to content

Commit b5acd79

Browse files
committed
Add missing confs
1 parent 4f39ad2 commit b5acd79

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

mailcow.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2025/05/31
1+
## Version 2025/07/18
22
# make sure that your mailcow container is named mailcow
33
# make sure that you are aqquainted with the mailcow documentation (https://docs.mailcow.email/)
44
# 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 @@
77

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

1214
# modify these to match your domain/mailcow configuration
1315
server_name mailcow.* autoconfig.* autodiscover.*;
@@ -26,6 +28,9 @@ server {
2628
# enable for Authentik (requires authentik-location.conf in the location block)
2729
#include /config/nginx/authentik-server.conf;
2830

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

48+
# enable for Tinyauth (requires tinyauth-server.conf in the server block)
49+
#include /config/nginx/tinyauth-location.conf;
50+
4351
include /config/nginx/resolver.conf;
4452
set $upstream_app mailcow;
4553
set $upstream_port 8080;

qbit-manage.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
## Version 2025/07/12
1+
## Version 2025/07/18
22
# make sure that your qbit-manage container is named qbit-manage
33
# make sure that your dns has a cname set for qbit-manage
44
# qbit-manage v4.5.0+ only
55

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

1012
server_name qbit-manage.*;
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 qbit-manage;

0 commit comments

Comments
 (0)