您好,登錄后才能下訂單哦!
在Lighttpd Server中設置VirtualHosts的方法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
VirtualHosting是在單個服務器上托管多個域的一種實現。它能夠利用服務器的最大資源并降低消耗現在,大多數Web服務器都支持虛擬主機環境。
在我們之前的文章中,我們介紹了在CentOS / RHEL上安裝Lighttpd服務器。本篇文章將介紹關于在Lighttpd服務器中設置VirtualHosts。
例如,我們使用以下域名:
site1.php.cn
site2.php.cn
步驟1:創建服務器文檔根目錄
首先為兩個域創建文件夾(如果不存在)
# mkdir -p /sites/vhosts/site1.php.cn/www # mkdir -p /sites/vhosts/site2.php.cn/www
出于測試目的,我們在兩個文檔根目錄中創建index.html文件
# echo "Welcome to Site1" > /sites/vhosts/site1.php.cn/www/index.html # echo "Welcome to Site2" > /sites/vhosts/site2.php.cn/www/index.html
步驟2:更新主配置文件
現在編輯Lighttpd主配置文件/etc/lighttpd/lighttpd.conf并啟用包含虛擬主機的文件。通過刪除起始#符號取消對以下行的注釋。
include_shell "cat /etc/lighttpd/vhosts.d/*.conf"
步驟3:創建VirtualHost配置文件
現在開始為兩個域或子域創建virutalhost配置文件,首先為site1.php.cn創建
# vim /etc/lighttpd/vhosts.d/site1.php.cn.conf
$HTTP["host"] == "site1.php.cn" { server.document-root = "/sites/vhosts/site1.php.cn/public" server.errorlog = "/var/log/lighttpd/site1.php.cn.error.log" accesslog.filename = "/var/log/lighttpd/site1.php.cn.access.log" }
現在為site2.php.cn創建配置文件
# vim /etc/lighttpd/vhosts.d/site2.php.cn.conf
$HTTP["host"] == "site2.php.cn" { server.document-root = "/sites/vhosts/site2.php.cn/public" server.errorlog = "/var/log/lighttpd/site2.php.cn.error.log" accesslog.filename = "/var/log/lighttpd/site2.php.cn.access.log" }
步驟4:驗證配置并重新啟動lighttpd
首先驗證所有配置文件的語法,包括主配置文件
# lighttpd -t -f /etc/lighttpd/lighttpd.conf Syntax OK
如果發現所有語法都正常,讓我們重新啟動服務。
# service lighttpd restart
完成后在瀏覽器中測試你的兩個域,并檢查是否獲得了步驟1中創建的頁面上的正確內容。
感謝各位的閱讀!看完上述內容,你們對在Lighttpd Server中設置VirtualHosts的方法大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。