From fac68185905b0d88c4a9cc080cb1cc9413bf9408 Mon Sep 17 00:00:00 2001 From: swamdrgon <52345589+swamdrgon@users.noreply.github.com> Date: Thu, 30 Jan 2020 21:02:48 +0800 Subject: [PATCH] Update nginx.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根据 issue #33 删除google 反代的部分 --- conf/nginx.conf | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 2df935e..259bc0b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -304,24 +304,4 @@ http { } } - server { - listen 443 ssl; - server_name www.google.com; - - ssl on; - ssl_certificate ca/pixiv.net.crt; - ssl_certificate_key ca/pixiv.net.key; - - location / { - #root html; - #index index.html index.htm; - rewrite ^/(.*)$ https://www.recaptcha.net/$1 redirect; - } - - #error_page 500 502 503 504 /50x.html; - #/location = /50x.html { - # root html; - #} - } - }