Add missing confs

This commit is contained in:
thespad 2025-07-18 20:43:04 +01:00
commit b5acd79700
No known key found for this signature in database
2 changed files with 18 additions and 2 deletions

View file

@ -1,4 +1,4 @@
## Version 2025/05/31 ## Version 2025/07/18
# make sure that your mailcow container is named mailcow # 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 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 # 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 { server {
listen 443 ssl; listen 443 ssl;
# listen 443 quic;
listen [::]:443 ssl; listen [::]:443 ssl;
# listen [::]:443 quic;
# modify these to match your domain/mailcow configuration # modify these to match your domain/mailcow configuration
server_name mailcow.* autoconfig.* autodiscover.*; server_name mailcow.* autoconfig.* autodiscover.*;
@ -26,6 +28,9 @@ server {
# enable for Authentik (requires authentik-location.conf in the location block) # enable for Authentik (requires authentik-location.conf in the location block)
#include /config/nginx/authentik-server.conf; #include /config/nginx/authentik-server.conf;
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
#include /config/nginx/tinyauth-server.conf;
location / { location / {
# enable the next two lines for http auth # enable the next two lines for http auth
#auth_basic "Restricted"; #auth_basic "Restricted";
@ -40,6 +45,9 @@ server {
# enable for Authentik (requires authentik-server.conf in the server block) # enable for Authentik (requires authentik-server.conf in the server block)
#include /config/nginx/authentik-location.conf; #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; include /config/nginx/resolver.conf;
set $upstream_app mailcow; set $upstream_app mailcow;
set $upstream_port 8080; set $upstream_port 8080;

View file

@ -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 qbit-manage container is named qbit-manage
# make sure that your dns has a cname set for qbit-manage # make sure that your dns has a cname set for qbit-manage
# qbit-manage v4.5.0+ only # qbit-manage v4.5.0+ only
server { server {
listen 443 ssl; listen 443 ssl;
# listen 443 quic;
listen [::]:443 ssl; listen [::]:443 ssl;
# listen [::]:443 quic;
server_name qbit-manage.*; server_name qbit-manage.*;
@ -22,6 +24,9 @@ server {
# enable for Authentik (requires authentik-location.conf in the location block) # enable for Authentik (requires authentik-location.conf in the location block)
#include /config/nginx/authentik-server.conf; #include /config/nginx/authentik-server.conf;
# enable for Tinyauth (requires tinyauth-location.conf in the location block)
#include /config/nginx/tinyauth-server.conf;
location / { location / {
# enable the next two lines for http auth # enable the next two lines for http auth
#auth_basic "Restricted"; #auth_basic "Restricted";
@ -36,6 +41,9 @@ server {
# enable for Authentik (requires authentik-server.conf in the server block) # enable for Authentik (requires authentik-server.conf in the server block)
#include /config/nginx/authentik-location.conf; #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/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app qbit-manage; set $upstream_app qbit-manage;