Pixiv-Nginx/conf/Reddit.conf
c15412 81c7a11ef8
更新 (#69)
* 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参数,提升访问可靠性
2024-09-01 13:09:39 +08:00

51 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Reddit Start
upstream Reddit {
server 146.75.21.140:443;
server 151.101.77.140:443;
server 151.101.89.140:443;
server 151.101.109.140:443;
#server 151.101.133.140:443;
##级差为4个/24段即为/22
keepalive 16;
keepalive_time 1h;
keepalive_timeout 300s;
keepalive_requests 4000;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name reddit.com;
server_name *.reddit.com;
server_name redd.it;
server_name *.redd.it;
server_name redditstatic.com;
server_name *.redditstatic.com;
server_name redditmedia.com;
server_name *.redditmedia.com;
include cert.conf;
access_log logs/Reddit-access.log main buffer=4k;
error_log nul;
location / {
proxy_max_temp_file_size 0;
proxy_buffer_size 64k;
proxy_buffers 32 64k;
proxy_busy_buffers_size 128k;
keepalive_requests 4000;
proxy_pass https://Reddit/;
proxy_connect_timeout 5;
keepalive_timeout 120;
proxy_set_header Connection "";
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
proxy_next_upstream error timeout http_429 http_500 http_502 http_503 http_504 non_idempotent;
include proxy.params;
}
}
# Reddit End