mirror of
https://github.com/mashirozx/Pixiv-Nginx.git
synced 2024-11-11 00:08:11 +08:00
81c7a11ef8
* Add files via upload Update the upstream of Steam, Pixiv, E-hentai Add Server : Discord (IPv4) Instagram (IPv6 Only, Local DNS rewrite required to rewrite all subdomains) WallHaven (IPv4, image CDN Only, excluding pages) Reddit (IPv4, Local DNS rewrite required to rewrite all subdomains) Twitter (IPv4, Local DNS rewrite required to rewrite all subdomains) Twitch (IPv4, Local DNS And DoH were required to rewrite all subdomains) GoogleCDN (File Server IPv6 Only, website pages and IPv4 servers were not included, Local DNS rewrite required to rewrite all subdomains) * Update the self-signed certificate config self-signed certificate * Update README.md * 更换NGINX版本 * 配置文件(2024年08月31日18时11分 配置文件(2024年08月31日18时11分 1、更新部分上游服务器 2、改进KeepAlive参数,提升访问可靠性
20 lines
601 B
Plaintext
20 lines
601 B
Plaintext
proxy_max_temp_file_size 0;
|
|
keepalive_timeout 120s;
|
|
keepalive_requests 30000;
|
|
#limit_rate_after 1M;
|
|
limit_rate 2M;
|
|
resolver 119.29.29.29:53 valid=1h ipv4=off ipv6=on;
|
|
if ( $http_host ~ (([\S\s]*).googlevideo.com) ){
|
|
proxy_pass https://$2.${domain_SUFFIX}:443;
|
|
#$2是匹配上的变量部分
|
|
}
|
|
|
|
proxy_set_header Connection "";
|
|
proxy_connect_timeout 5;
|
|
proxy_set_header Range $http_range;
|
|
proxy_set_header If-Range $http_if_range;
|
|
include proxy.params;
|
|
|
|
#access_log logs/GoogleVideo-access.log GoogleVideo buffer=4k gzip=4;
|
|
access_log off;
|
|
error_log logs/GoogleVideo-error.log warn; |