Lighttpd - 虛擬主機(基於Port)
# mkdir /var/lighttpd/blog.ccc.com
# chown -R lighttpd.lighttpd /var/lighttpd/blog.ccc.com
2. 新建vhosts.conf檔案
# vi /etc/lighttpd/conf.d/vhosts.conf
內容如下
$SERVER["socket"] == "192.168.11.200:8080" {
server.document-root="/var/lighttpd/blog.ccc.com"
server.errorlog="/var/log/lighttpd/blog.ccc.com.error.log"
accesslog.filename="/var/log/lighttpd/blog.ccc.com.access.log"
}
3. 編輯lighttpd.conf檔案
# vi /etc/lighttpd/lighttpd.conf
內容如下
include "conf.d/vhosts.conf"
4. 重啟lighttpd 服務
# service lighttpd restart
Stopping lighttpd: [ OK ]Starting lighttpd: [ OK ]
5. 測試
# vi /var/lighttpd/blog.ccc.com/index.html
內容如下
<HTML>
<BODY>
<center><H1></H1></center>blog.ccc.com base on port 8080</H1></center>
</BODY>
</HTML>