hyperpiped/conf/piped/proxy.conf
2023-10-13 20:17:35 +02:00

22 lines
562 B
Plaintext

# 2023-10-13
server {
listen 80;
server_name pipedproxy.domain.com;
aio threads=default;
location ~ (/videoplayback|/api/v4/|/api/manifest/) {
aio threads=default;
include snippets/ytproxy.conf;
add_header Cache-Control private always;
}
location / {
aio threads=default;
include snippets/ytproxy.conf;
add_header Cache-Control "public, max-age=604800";
}
}