mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-05 12:36:02 -07:00
Merge pull request #767 from jlssmt/tinyauth
Some checks failed
Check Samples / check-allowed-file-names (push) Has been cancelled
Some checks failed
Check Samples / check-allowed-file-names (push) Has been cancelled
This commit is contained in:
commit
40eea01572
1 changed files with 25 additions and 0 deletions
25
tinyauth.subdomain.conf.sample
Normal file
25
tinyauth.subdomain.conf.sample
Normal 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;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue