请问nginx如何使用啊,怎么在nginx下面挂网页,急求。。

发布网友 发布时间:2022-02-27 00:59

我来回答

1个回答

热心网友 时间:2022-02-27 02:28

server {
listen 443 default ssl;
listen [::]:443;
server_name google.hahahahhahahahha.com;
#1,设置反向代理的域名
ssl on;
ssl_certificate /cert/hahahahhahahahha.cer;
ssl_certificate_key /cert/hahahahhahahahha.pem;
location / {
proxy_redirect off;
proxy_pass https://www.google.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Accept-Encoding "";
#2,如果没有此项,当通过反向代理访问时会被重定向到google的站点,而不能通过反向代理访问
proxy_set_header User-Agent "Mozilla/5.0 (Windows NT 6.1; WOW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.49 Safari/537.36";
#3,可选,可以通过此项设置google打开的默认界面风格,此处呈现为平板的风格,如果不设置,google会自动根据浏览器判
proxy_set_header Accept-Language "zh-CN";
#4,可选,设置界面呈现的语言,如果不设置,google会自动根据浏览器判断
proxy_set_header Cookie "PREF=ID=xxxxxx:U=yyyyy:FF=0:LD=zh-CN:NW=1:CR=2:TM=zzzz:LM=mmmmm:GM=1:SG=1:S=-nnnnn";
#5,可选,设置cookie处理个性化设置,重点为:NW=1表示结果在新窗口中打开,LD=zh-CN表示语言为简体中文,此项将覆盖#4中的设置。(此处某些数据已编辑处理)
sub_filter www.google.com g.linzhen.net;
#6,可选,将页面中的 www.google.com 替换为g.linzhen.net,否则点击某些链接会跳回到google官方。
sub_filter_once off;
}
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com