This repository has been archived on 2025-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
esh/esh_piped/templates/default/pipedproxy.conf.erb
2025-02-15 01:05:58 +09:00

14 lines
341 B
Text

server {
listen 80;
server_name <%= @proxy_hostname %>;
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";
}
}