关于代理转发,适用于一个https证书,多个站点的情况
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于代理转发,适用于一个https证书,多个站点的情况相关的知识,希望对你有一定的参考价值。
搭载代理服务器
在传递参数添加指定变量值例如serverid=x,在nginx配置中添加这个变量的映射关系,
map $arg_serverid $source{
x ip
}
map $arg_serverid $myhost{
x host
}
server中添加location配置
location /{
proxy_set_header Host $myhost;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_ignore_headers Cache-Control Expires Set-Cookie X-Accel-Expires;
proxy_pass http://$source;
}
以上是关于关于代理转发,适用于一个https证书,多个站点的情况的主要内容,如果未能解决你的问题,请参考以下文章
iPhone手机使用charles代理抓包时,https站点显示unknown问题
当您使用“badidea”或“thisisunsafe”绕过 Chrome 证书/HSTS 错误时,它是不是仅适用于当前站点? [关闭]