通过Nginx反向代理加速Github下载


添加配置

  • 修改server_name为真实域名

server {
  listen 80;
  listen 443 ssl;
  http2 on;
  server_name your_host;
  root /usr/share/nginx/html/html/down.github;

  access_log /var/log/nginx/down.github.access.log  main;

  ssl_certificate /usr/share/nginx/html/cert/down.github/cert.pem;
  ssl_certificate_key /usr/share/nginx/html/cert/down.github/key.pem;
  ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
  ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
  ssl_prefer_server_ciphers on;
  ssl_session_cache shared:SSL:10m;
  ssl_session_timeout 10m;
  add_header Strict-Transport-Security "max-age=31536000";
  
  location ~ \.well-known {
    allow all;
  }


  resolver 8.8.8.8;
  location / {

    if ($arg_url ~* "^https://codeload.github.com/") {
      rewrite ^ $arg_url break;
      proxy_pass $arg_url;
    }
    
    #proxy_set_aheader Host $host;
    #proxy_set_header X-Real-IP $remote_addr;
    #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    #proxy_set_header X-Forwarded-Proto $scheme;
    proxy_intercept_errors on;

    if ($arg_url ~* "^(https://github.com)") {
      set $new_url $arg_url;
      #rewrite ^ $new_url break;
      
      proxy_pass $new_url;
      error_page 301 302 307 = @handle_redirect;
    }
  }

  location @handle_redirect {
    set $down_url $upstream_http_location;
    if ($down_url ~* "^https://codeload.github.com/") {
      rewrite ^ $down_url break;
      proxy_pass $down_url;
    }
  }

}

评论已关闭