35 lines
985 B
Plaintext
35 lines
985 B
Plaintext
|
## Version 2023/02/05
|
||
|
# make sure that your tautulli container is named tautulli
|
||
|
# make sure that your dns has a cname set for tautulli
|
||
|
|
||
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name {{ tautulli_host }}.{{ remote_domain }};
|
||
|
|
||
|
include /config/nginx/ssl.conf;
|
||
|
|
||
|
client_max_body_size 0;
|
||
|
|
||
|
location / {
|
||
|
include /config/nginx/resolver.conf;
|
||
|
proxy_pass http://{{ tautulli_host }}.{{ aya01_host }}.{{ local_domain }};
|
||
|
}
|
||
|
|
||
|
location ~ (/tautulli)?/api {
|
||
|
include /config/nginx/resolver.conf;
|
||
|
proxy_pass http://{{ tautulli_host }}.{{ aya01_host }}.{{ local_domain }};
|
||
|
}
|
||
|
|
||
|
location ~ (/tautulli)?/newsletter {
|
||
|
include /config/nginx/resolver.conf;
|
||
|
proxy_pass http://{{ tautulli_host }}.{{ aya01_host }}.{{ local_domain }};
|
||
|
}
|
||
|
|
||
|
location ~ (/tautulli)?/image {
|
||
|
include /config/nginx/resolver.conf;
|
||
|
proxy_pass http://{{ tautulli_host }}.{{ aya01_host }}.{{ local_domain }};
|
||
|
}
|
||
|
}
|