diff --git a/mytv/nginx.conf b/mytv/nginx.conf index 71f838d..6ce4264 100644 --- a/mytv/nginx.conf +++ b/mytv/nginx.conf @@ -43,7 +43,7 @@ http { ## # Gzip 压缩设置 ## - gzip on; + gzip off; gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript video/mp2t; ## @@ -656,7 +656,7 @@ http { # 代理头设置 proxy_set_header X-Real-IP $remote_addr; # 传递客户端真实 IP proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # 支持多级代理 - proxy_set_header Host s1.tvm4a1.cfd; # 确保请求的 Host 匹配 Cloudflare 配置 + proxy_set_header Host s1.an94tv.cfd; # 确保请求的 Host 匹配 Cloudflare 配置 # SSL 配置 proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # 指定 SSL 协议 @@ -683,7 +683,7 @@ http { return 302 $redirect_uri; } - proxy_pass http://s1.tvm4a1.cfd; # 替换为您的源站地址 + proxy_pass http://s1.an94tv.cfd; # 替换为您的源站地址 } # 针对 m3u8 文件内容修改 @@ -697,10 +697,10 @@ http { return 302 $redirect_uri; } - proxy_pass http://s1.tvm4a1.cfd; + proxy_pass http://s1.an94tv.cfd; # 替换为相对路径 - sub_filter 'http://aktv_stream.m16tv.cfd/AKTV/stream/' '/AKTV/stream/'; + sub_filter 'http://s1.an94tv.cfd/AKTV/stream/' '/AKTV/stream/'; sub_filter_once off; sub_filter_types application/vnd.apple.mpegurl text/plain; @@ -720,7 +720,7 @@ http { return 302 $redirect_uri; } - proxy_pass http://s1.tvm4a1.cfd; # 替换为您的源站地址 + proxy_pass http://s1.an94tv.cfd; # 替换为您的源站地址 proxy_cache_valid 200 206 60s; # 缓存 .ts 文件 60 秒 expires 60s; # 设置浏览器端缓存 60 秒 } @@ -743,7 +743,7 @@ http { add_header Content-Disposition "inline" always; # 替换为相对路径 - sub_filter 'https://s1.tvm4a1.cfd' 'http://$host:20008'; + sub_filter 'http://s1.an94tv.cfd' 'http://$host:20008'; sub_filter 'AKTV.m3u8' 'AKTV.m3u8?token=$arg_token'; sub_filter_once off; sub_filter_types *; # 对所有 MIME 类型进行替换 @@ -890,6 +890,21 @@ http { proxy_set_header Host o12.veryfast.filegear-sg.me; # 确保请求的 Host 匹配 Cloudflare 配置 } + # /cdn9/ 子目录 + location /cdn9/ { + if ($auth_ok = 0) { + return 302 https://cdn.1678520.xyz/403?mytv; + } + + if ($arg_token) { + add_header Set-Cookie "token=$arg_token; Path=/"; + return 302 $redirect_uri; + } + + proxy_pass http://cdn9.veryfast.filegear-sg.me/; + proxy_set_header Host cdn9.veryfast.filegear-sg.me; # 确保请求的 Host 匹配 Cloudflare 配置 + } + } server {