moved services to dockerserver1

This commit is contained in:
2024-03-02 22:13:12 -06:00
parent 0b7ac066dc
commit 36ec6c6059
18 changed files with 685 additions and 0 deletions

14
piped/config/pipedproxy.conf Executable file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
server_name pipedproxy.akanealw.com;
location ~ (/videoplayback|/api/v4/|/api/manifest/) {
include snippets/ytproxy.conf;
add_header Cache-Control private always;
}
location / {
include snippets/ytproxy.conf;
add_header Cache-Control "public, max-age=604800";
}
}