Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions stash.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Version 2024/10/18
# make sure that your stash container is named stash
# make sure that your dns has a cname set for stash
# if stash is running in bridge mode and the container is named "stash", the below config should work as is
# if not, replace the line "set $upstream_app stash;" with "set $upstream_app <containername>;"
# or "set $upstream_app <HOSTIP>;" for host mode, HOSTIP being the IP address of stash

server {
listen 443 ssl;
listen [::]:443 ssl;

server_name stash.*;

include /config/nginx/ssl.conf;

client_max_body_size 0;

location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app stash;
set $upstream_port 9999;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
}
31 changes: 31 additions & 0 deletions tubearchivist.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Version 2024/10/18
# make sure that your TubeArchivist container is named TubeArchivist
# make sure that your dns has a cname set for tubearchivist
# if jellyfin is running in bridge mode and the container is named "TubeArchivist", the below config should work as is
# if not, replace the line "set $upstream_app TubeArchivist;" with "set $upstream_app <containername>;"
# or "set $upstream_app <HOSTIP>;" for host mode, HOSTIP being the IP address of tubearchivist
# maker sure to set the "TA_HOST" environment variables to your subdomain in TubeArchivist docker.

server {
listen 443 ssl;
listen [::]:443 ssl;

server_name tubearchivist.*;

include /config/nginx/ssl.conf;

client_max_body_size 0;

location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app TubeArchivist;
set $upstream_port 8000;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
}

Loading