Merge branch 'master' into add-mailcow-proxy-conf

This commit is contained in:
Petar Nikolov 2025-07-13 09:06:21 +03:00 committed by GitHub
commit bee771f845
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,25 @@
## Version 2025/06/08
# make sure that your tinyauth container is named tinyauth
# make sure that your dns has a cname set for tinyauth
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name tinyauth.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app tinyauth;
set $upstream_port 3000;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}