Update nginx.conf

This commit is contained in:
rad168
2025-07-06 15:02:14 +08:00
committed by GitHub
parent 8d424b9d05
commit d0a2282047

View File

@@ -487,7 +487,7 @@ http {
# 代理头设置 # 代理头设置
proxy_set_header X-Real-IP $remote_addr; # 传递客户端真实 IP proxy_set_header X-Real-IP $remote_addr; # 传递客户端真实 IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # 支持多级代理 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # 支持多级代理
proxy_set_header Host s1.m16tv.cfd; # 确保请求的 Host 匹配 Cloudflare 配置 proxy_set_header Host s1.tvm4a1.cfd; # 确保请求的 Host 匹配 Cloudflare 配置
# SSL 配置 # SSL 配置
proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # 指定 SSL 协议 proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # 指定 SSL 协议
@@ -505,12 +505,12 @@ http {
# 默认 location 配置 # 默认 location 配置
location / { location / {
proxy_pass http://s1.m16tv.cfd; # 替换为您的源站地址 proxy_pass http://s1.tvm4a1.cfd; # 替换为您的源站地址
} }
# 针对 m3u8 文件内容修改 # 针对 m3u8 文件内容修改
location ~ \.m3u8$ { location ~ \.m3u8$ {
proxy_pass http://s1.m16tv.cfd; proxy_pass http://s1.tvm4a1.cfd;
# 替换为相对路径 # 替换为相对路径
sub_filter 'http://aktv_stream.m16tv.cfd/AKTV/stream/' '/AKTV/stream/'; sub_filter 'http://aktv_stream.m16tv.cfd/AKTV/stream/' '/AKTV/stream/';
@@ -524,7 +524,7 @@ http {
# 针对 .ts 和 .aac 文件的特殊缓存设置 # 针对 .ts 和 .aac 文件的特殊缓存设置
location ~* \.(ts|aac)$ { location ~* \.(ts|aac)$ {
proxy_pass http://s1.m16tv.cfd; # 替换为您的源站地址 proxy_pass http://s1.tvm4a1.cfd; # 替换为您的源站地址
proxy_cache_valid 200 206 60s; # 缓存 .ts 文件 60 秒 proxy_cache_valid 200 206 60s; # 缓存 .ts 文件 60 秒
expires 60s; # 设置浏览器端缓存 60 秒 expires 60s; # 设置浏览器端缓存 60 秒
} }
@@ -539,7 +539,7 @@ http {
add_header Content-Disposition "inline" always; add_header Content-Disposition "inline" always;
# 替换为相对路径 # 替换为相对路径
sub_filter 'https://s1.m16tv.cfd' 'http://$host:20008'; sub_filter 'https://s1.tvm4a1.cfd' 'http://$host:20008';
sub_filter_once off; sub_filter_once off;
sub_filter_types *; # 对所有 MIME 类型进行替换 sub_filter_types *; # 对所有 MIME 类型进行替换