#nginx 監聽原理 先監聽埠 --> 再配置網域名稱 -->匹配到就訪問local 否則 沒有匹配到網域名稱就預設訪問第乙個監聽埠的local位址
# 定義錯誤頁面,如果是500錯誤,則把站點根目錄下的50x.html返回給使用者
location = /50x.html }
#nginx 監聽原理 先監聽埠 --> 再配置網域名稱 -->匹配到就訪問local 否則 沒有匹配到網域名稱就預設訪問第乙個監聽埠的local位址
//看到ok和successful,說明配置檔案沒問題
nginx: the configuration file /usr/local/ nginx-1.0.6/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/ nginx-1.0.6/conf/nginx.conf test is successful
#啟動 nginx
#重啟 nginx
Nginx配置檔案解析
nginx配置檔案解析 nginx配置檔案預設在 usr local nginx conf nginx.conf,配置檔案包括 全域性 event http server設定 event主要設定nginx的工作模式,http提供web功能 server用來設定虛擬主機,server必須位於http內...
nginx配置檔案解析
nginx為微核心加可擴充套件模組。自身模組有core event http mail等核心模組。開發者可以基於這些核心模組開發滿足自身業務需求的模組,主要是http模組。nginx的配置項的資料結構 struct ngx cycle sconf ctx是乙個指標陣列,陣列一共有ngx max mo...
nginx配置檔案解析
nginx配置在conf nginx.conf中,主要有全域性,http,server,location塊配置 user nobody 執行使用者為nobody使用者 worker processes 3 工作程序數 worker cpu affinity 01 10 10 將工作程序放入cpu的哪...