首页 > 代码库 > lighttpd多端口配置

lighttpd多端口配置

Lighttpd绑定一个端口一般都是下面的方法. 备忘一下.

server.port                = 80

如果需要绑定多个端口, 可以这样.

$SERVER["socket"] == "0.0.0.0:82" {
server.document-root = "/oldyzzt_s2/webroot/game/"
}
$SERVER["socket"] == "0.0.0.0:83" {
server.document-root = "/oldyzzt_s3/webroot/game/"
}




本文出自 “always_yunwei” 博客,请务必保留此出处http://alwaysyunwei.blog.51cto.com/3224143/1440999

lighttpd多端口配置