我的部落格關於nginx的內容位址為:
#user nobody;(執行使用者)worker_processes 1;(啟動程序,通常設定成和cpu的數量相等)
#error_log logs/error.log;(全域性錯誤日誌)
#error_log logs/error.log notice;(全域性錯誤日誌)
#error_log logs/error.log info;(全域性錯誤日誌)
#pid logs/nginx.pid;(pid檔案儲存位置)
#error_page 404 /404.html;(定義404錯誤提示頁面)
# redirect server error pages to the static page /50x.html
#error_page 500 502 503 504 /50x.html;(定義500 502 503 504
錯誤提示頁面)
location = /50x.html
# proxy the php scripts to apache listening on 127.0.0.1:80
##location ~ \.php$
# pass the php scripts to fastcgi server listening on 127.0.0.1:9000
##location ~ \.php$
# deny access to .htaccess files, if apache's document root# concurs with nginx's one
##location ~ /\.ht
}
# another virtual host using mix of ip-, name-, and port-based configuration(使用基於ip、名稱和埠的配置組合的另乙個虛擬主機)
nginx配置檔案說明
定義nginx執行的使用者和使用者組 user nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 4 log檔案位址 error log logs error.log 全域性錯誤日誌定義型別,debug info notice warn error cr...
Nginx配置檔案說明
原文 nginx配置檔案nginx.conf中文詳解 定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit er...
nginx配置檔案說明
user nobody 開啟程序數 cpu數 worker processes 1 錯誤日誌儲存位置 error log logs error.log error log logs error.log notice error log logs error.log info 程序號儲存檔案 pid ...