使用lighttpd做代理服务器

使用lighttpd做代理服务器

移动有些内部服务器不能访问,所以就用lighttpd做了下代理。
/etc/lighttpd/lighttpd.conf配置如下:
server.port = 8081
server.document-root = "/var/www/probind/"
#proxy.debug = 1
proxy.balance = "hash"
proxy.server = ( "" =>
(
( "host" => "x.x.x.x", "port" => 80 )
)
)
server.protocol-http11="enable"
server.modules=("mod_indexfile", "mod_dirlisting", "mod_staticfile","mod_proxy")
把上面的x.x.x.x换成ip即可。


你可能感兴趣的:(使用lighttpd做代理服务器)