File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ ## Version 2024/10/18
2+ # make sure that your TubeArchivist container is named TubeArchivist
3+ # make sure that your dns has a cname set for tubearchivist
4+ # if jellyfin is running in bridge mode and the container is named "TubeArchivist", the below config should work as is
5+ # if not, replace the line "set $upstream_app TubeArchivist;" with "set $upstream_app <containername>;"
6+ # or "set $upstream_app <HOSTIP>;" for host mode, HOSTIP being the IP address of tubearchivist
7+ # maker sure to set the "TA_HOST" environment variables to your subdomain in TubeArchivist docker.
8+
9+ server {
10+ listen 443 ssl;
11+ listen [::]:443 ssl;
12+
13+ server_name tubearchivist.*;
14+
15+ include /config/nginx/ssl.conf;
16+
17+ client_max_body_size 0;
18+
19+ location / {
20+ include /config/nginx/proxy.conf;
21+ include /config/nginx/resolver.conf;
22+ set $upstream_app TubeArchivist;
23+ set $upstream_port 8000;
24+ set $upstream_proto http;
25+ proxy_pass $upstream_proto://$upstream_app:$upstream_port;
26+
27+ proxy_set_header Range $http_range;
28+ proxy_set_header If-Range $http_if_range;
29+ }
30+ }
31+
You can’t perform that action at this time.
0 commit comments