user nobody; #配置worker程序執行使用者
worker_processes 1; #配置工作程序數目,根據硬體調整,通常等於cpu數量或者2倍於cpu數量
error_log logs/error.log; #配置全域性錯誤日誌及型別,[debug | info | notice | warn | error | crit],預設是error
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid; #配置程序pid檔案
#配置工作模式和連線數
events
#配置http伺服器,利用它的反向**功能提供負載均衡支援
#error_page 404 /404.html; #配置404頁面
# redirect server error pages to the static page /50x.html
#error_page 500 502 503 504 /50x.html; #配置50x錯誤頁面
location = /50x.html
#php 指令碼請求全部**到apache處理
# proxy the php scripts to apache listening on 127.0.0.1:80
##location ~ \.php$
#php 指令碼請求全部**到fastcgi處理
# pass the php scripts to fastcgi server listening on 127.0.0.1:9000
##location ~ \.php$
#禁止訪問 .htaccess 檔案
# 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
##server
#}#配置https服務
Nginx配置詳解
nginx的主要配置檔案是nginx.conf,位於安裝目錄下的nginx conf資料夾裡,主要的配置引數如下 定義nginx執行的使用者和使用者組 user nobody nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,...
nginx配置詳解
定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log var log nginx error...
NGINX配置詳解
nginx 配置檔案 user nginx 使用者worker processes 8 工作程序,根據硬體調整,大於等於cpu核數 error log logs nginx error.log crit 錯誤日誌 pid logs nginx.pid pid放置的位置 worker rlimit n...