nginx虛擬主機配置
server
error_page 404 /404.html;
# redirecwww.cppcns.comt server error pages to the static page /50x.html
# error_page 500 502 503 504 /50x.html;
location = /50x.html
}配置說明:
listen 80; =>指定虛擬主機監聽的是80埠
serwww.cppcns.comver_name localhost; =>指定虛擬主機網域名稱
location / =>匹配請求路徑,/表示匹配所有請求
root htmwww.cppcns.coml; =>指定虛擬主機的物理根目錄,eg、html物理根目錄位jhidyzb於d:\div\nginx-1.9.14\html\
index index.html index.htm; =>指定虛擬主機jhidyzb的預設首頁,預設首頁位於d:\div\nginx-1.9.14\html目錄下
本文標題: nginx虛擬主機配置例項詳解
本文位址:
Nginx虛擬主機配置
0.nginx簡介 nginx engine x 是乙個高效能的 http 和 反向 伺服器,也是乙個 imap pop3 smtp 伺服器。nginx 已經因為它的穩定性 豐富的功能集 示例配置檔案和低系統資源的消耗而聞名了。1.nginx使用注意事項 2.nginx相關檔案 3.nginx虛擬主...
nginx虛擬主機配置
就是在一台伺服器啟動多個 如何區分不同的 1 網域名稱不同 2 埠不同 乙個server節點就是乙個虛擬主機,可以配置多個server,配置多個虛擬主機,html是nginx安裝目錄下的html目錄。乙個網域名稱對應乙個ip位址,乙個ip位址可以被多個網域名稱繫結。本地測試可以修改hosts檔案。修...
nginx虛擬主機配置
虛擬主機的配置有多種 一 color green b 基於ip的虛擬主機 b color 二 color green b 基於埠的虛擬主機 b color 三 color green b 基於網域名稱的虛擬主機 b color 對於nginx要實現虛擬主機,通過nginx.cnf中的server進行...