We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397ecf3 commit 8de27eeCopy full SHA for 8de27ee
tinyauth.subdomain.conf.sample
@@ -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