grabble.top.conf

  1. vhost cat grabble.top.conf
  2. server {
  3. listen 443 ssl http2;
  4. listen [::]:443 ssl http2;
  5. ssl_certificate ssl/grabble.top_chain.crt;
  6. ssl_certificate_key ssl/grabble.top_key.key;
  7. include ssl.conf;
  8. server_name grabble.top;
  9. access_log /data/wwwlogs/grabble.top_nginx.log combined;
  10. location / {
  11. proxy_pass https://www.google.com;
  12. proxy_redirect off;
  13. sub_filter www.google.com grabble.top;
  14. sub_filter_once off;
  15. proxy_set_header Host "www.google.com";
  16. proxy_set_header Referer $http_referer;
  17. proxy_set_header X-Real-IP $remote_addr;
  18. proxy_set_header User-Agent $http_user_agent;
  19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  20. proxy_set_header X-Forwarded-Proto https;
  21. proxy_set_header Accept-Encoding "";
  22. proxy_set_header Accept-Language "zh-CN";
  23. proxy_cookie_domain www.google.com grabble.top;
  24. 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";
  25. # 启用 proxy_cache 缓存
  26. proxy_cache proxycache;
  27. proxy_cache_valid 304 2h;
  28. proxy_cache_valid 403 444 2h;
  29. proxy_cache_valid 404 2h;
  30. proxy_cache_valid 500 502 2h;
  31. proxy_cache_use_stale invalid_header http_404 http_500 http_502;
  32. proxy_cache_lock on;
  33. proxy_cache_lock_timeout 5s;
  34. }
  35. location /admin {
  36. proxy_pass http://localhost:86/;
  37. }
  38. location ~* ^/(js|css|vendor|common|auth|trojan)/ {
  39. proxy_pass http://localhost:86;
  40. proxy_http_version 1.1;
  41. proxy_set_header Upgrade $http_upgrade;
  42. proxy_set_header Connection "Upgrade";
  43. proxy_set_header Host $host;
  44. }
  45. location ~ /(\.user\.ini|\.ht|\.git|\.svn|\.project|LICENSE|README\.md) {
  46. deny all;
  47. }
  48. }
  49. server {
  50. listen 80;
  51. listen [::]:80;
  52. server_name grabble.top;
  53. if ($host = "grabble.top") {
  54. rewrite ^/(.*)$ https://grabble.top permanent;
  55. }
  56. }

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;