21
12/17
nginx反向代理搭建谷歌镜像
nginx反向代理搭建谷歌镜像. 啥也不说了,直接上代码: server { listen 8000; server_name google.uol123.com; location / { #root "d:/wwwroot/test"; #index index.html; #proxy_redirect off; proxy_pass https://www.google.com.hk/; proxy_redirect / https://www.google.com.hk/; proxy_set_header Host www.google.com.hk; proxy_set_header X-Real-IP $remote_add...