authenticate media and thumb requests

This commit is contained in:
simon 2022-07-18 14:10:34 +07:00
parent f0850522a7
commit 0528220b5e
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 4 additions and 0 deletions

View File

@ -3,18 +3,22 @@ server {
listen 8000; listen 8000;
location /cache/videos/ { location /cache/videos/ {
auth_request /api/ping/;
alias /cache/videos/; alias /cache/videos/;
} }
location /cache/channels/ { location /cache/channels/ {
auth_request /api/ping/;
alias /cache/channels/; alias /cache/channels/;
} }
location /cache/playlists/ { location /cache/playlists/ {
auth_request /api/ping/;
alias /cache/playlists/; alias /cache/playlists/;
} }
location /media/ { location /media/ {
auth_request /api/ping/;
alias /youtube/; alias /youtube/;
types { types {
text/vtt vtt; text/vtt vtt;