lighttpd指定端口做代理服务器
关键词:lighttpd 指定端口 代理
接到一个超级坑的需求,访问lighttpd特定端口时转换到其他服务器(uhttpd),lighttpd的80端口正常使用。
网上都是针对特定域名做跳转,经过多次试验,发现特定端口使用代理也很简单。
启用lighttpd的反向代理模块:
编辑lighttpd/modules.conf文件,找到以下代码:
## ## mod_proxy ## ##include "conf.d/proxy.conf"
去掉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 ) ) ) }
这里8776是我指定的端口,访问8776就会跳转到192.167.0.55的80端口
重启lighttpd
这时访问lighttpd:8776 就会显示192.167.0.55:80的内容了
相关推荐
hygbuaa 2020-02-02
82463862 2011-09-13
boante 2008-07-17
httphttpcn 2007-06-27
87204950 2011-08-22
afterlake 2011-07-16
方正SOA中间件 2011-06-23
81204957 2011-06-20
85234850 2011-05-19
87447007 2011-03-10
89401052 2010-09-29
梦想启航 2010-06-14
kaiwangic 2010-04-01
afterlake 2009-12-25
bglmmz 2009-04-04
luyinlian 2011-09-23
MARQUIS 2012-08-13
87510793 2011-06-30
snowman 2014-08-07