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

15 lines
341 B
Text
Raw Normal View History

2025-02-15 00:56:26 +09:00
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";
}
}