22 lines
562 B
Plaintext
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";
|
|
}
|
|
}
|