Skip to content

Commit 8de27ee

Browse files
committed
add tinyauth
1 parent 397ecf3 commit 8de27ee

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

tinyauth.subdomain.conf.sample

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Version 2025/06/08
2+
# make sure that your tinyauth container is named tinyauth
3+
# make sure that your dns has a cname set for tinyauth
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name tinyauth.*;
10+
11+
include /config/nginx/ssl.conf;
12+
13+
client_max_body_size 0;
14+
15+
location / {
16+
17+
include /config/nginx/proxy.conf;
18+
include /config/nginx/resolver.conf;
19+
set $upstream_app tinyauth;
20+
set $upstream_port 3000;
21+
set $upstream_proto http;
22+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
23+
24+
}
25+
}

0 commit comments

Comments
 (0)