grabble.top.conf
➜ vhost cat grabble.top.confserver { listen 443 ssl http2; listen [::]:443 ssl http2; ssl_certificate ssl/grabble.top_chain.crt; ssl_certificate_key ssl/grabble.top_key.key; include ssl.conf; server_name grabble.top; access_log /data/wwwlogs/grabble.top_nginx.log combined; location / { proxy_pass https://www.google.com; proxy_redirect off; sub_filter www.google.com grabble.top; sub_filter_once off; proxy_set_header Host "www.google.com"; proxy_set_header Referer $http_referer; proxy_set_header X-Real-IP $remote_addr; proxy_set_header User-Agent $http_user_agent; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_set_header Accept-Encoding ""; proxy_set_header Accept-Language "zh-CN"; proxy_cookie_domain www.google.com grabble.top; proxy_set_header Cookie "PREF=ID=047808f19f6de346:U=0f62f33dd8549d11:FF=2:LD=en-US:NW=1:TM=1325338577:LM=1332142444:GM=1:SG=2:S=rE0SyJh2W1IQ-Maw"; # 启用 proxy_cache 缓存 proxy_cache proxycache; proxy_cache_valid 304 2h; proxy_cache_valid 403 444 2h; proxy_cache_valid 404 2h; proxy_cache_valid 500 502 2h; proxy_cache_use_stale invalid_header http_404 http_500 http_502; proxy_cache_lock on; proxy_cache_lock_timeout 5s; } location /admin { proxy_pass http://localhost:86/; } location ~* ^/(js|css|vendor|common|auth|trojan)/ { proxy_pass http://localhost:86; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; } location ~ /(\.user\.ini|\.ht|\.git|\.svn|\.project|LICENSE|README\.md) { deny all; }}server { listen 80; listen [::]:80; server_name grabble.top; if ($host = "grabble.top") { rewrite ^/(.*)$ https://grabble.top permanent; }}
ssl.conf
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-128-CCM-8-SHA256:TLS13-AES-128-CCM-SHA256:EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;