• 欢迎访问一起聊聊,欢迎加入一起聊聊 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏一起聊聊吧

apache/nginx/iis反向代理发送Host域名

软件安装 admin 2020-07-18 15:51:56 1102次 0条 未收录

1、apache:在<VirtualHost/>标签中的最后添加ProxyPreserveHost on

<VirtualHost *:80>
 RewriteEngine on
 ProxyPass /TLimages/ !
 ProxyPass /imagelist/ !
 ProxyPass /xiazai/ !
 ProxyPass /ad/ !
 ProxyPass / balancer://proxy/
 ProxyPassReverse / balancer://proxy/
 ProxyPreserveHost on
</VirtualHost>

2、nginx:在location {…}中添加proxy_set_header Host $host

location ^~/proxy_path/ {
 root "/www/html";
 index index.html;
 proxy_pass http://192.168.100.101/;
 proxy_set_header Host $host;
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

3、iis:设置preserveHostHeader:true

%windir%\system32\inetsrv\appcm d.exe set config -section:system.webServer/proxy -preserveHostHeader:true /commit:apphost

一起聊聊 , 版权所有丨如未注明 , 均为原创
转载请注明原文链接:apache/nginx/iis反向代理发送Host域名
喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址