lighttpd指定端口做代理服务器
2021-03-14 14:34
标签:bash ash 多次 文件 端口 去掉 指定端口 serve sha 关键词:lighttpd 指定端口 代理 接到一个超级坑的需求,访问lighttpd特定端口时转换到其他服务器(uhttpd),lighttpd的80端口正常使用。 网上都是针对特定域名做跳转,经过多次试验,发现特定端口使用代理也很简单。 编辑lighttpd/modules.conf文件,找到以下代码: 去掉include "conf.d/proxy.conf"这一行的## 添加以下代码: 这里8776是我指定的端口,访问8776就会跳转到192.167.0.55的80端口 这时访问lighttpd:8776 就会显示192.167.0.55:80的内容了 lighttpd指定端口做代理服务器 标签:bash ash 多次 文件 端口 去掉 指定端口 serve sha 原文地址:https://www.cnblogs.com/fensi/p/12808870.html启用lighttpd的反向代理模块:
##
## mod_proxy
##
##include "conf.d/proxy.conf"
2编辑/etc/lighttpd/lighttpd.conf文件
$SERVER["socket"] == "0.0.0.0:8776" {
proxy.server = (
"" => (
(
"host" => "192.167.0.55",
"port" => 80
)
)
)
}
重启lighttpd