在 Lighttpd 上指定具有相同文档根目录的两个 http 主机的最佳或正确方法是什么?例如,为 example.org 和 www.example.org 上的域提供服务。
在lighttpd.conf
for one host 中给出以下内容:
$HTTP["host"] == "www.example.org" {
server.document-root = "/path/to/root/example"
}
这是两个主机的有效配置吗?
$HTTP["host"] == ( "example2.org", "www.example2.org" ) {
server.document-root = "/path/to/root/example2"
}
或者您是否必须$HTTP["host"]
为每个字段复制/重复该字段?
不,这在测试配置文件时似乎不起作用:
我想每个
$HTTP["host"]
字段都必须分开,server.document-root
如果您希望不同的子域提供相同的站点数据,则重复。