nginx引數的詳細說明

2022-05-29 02:24:12 字數 1184 閱讀 1188

#開啟程序數 <=cpu數  

worker_processes 1;

#錯誤日誌儲存位置

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#程序號儲存檔案

#pid logs/nginx.pid;

#等待事件

#第乙個虛擬主機

server

location /upload

#設定檢視nginx狀態的位址

location /nginxstatus

#error_page 404 /404.html;

# redirect server error pages to the

static page /50x.html

# 定義錯誤提示頁面

error_page 500 502 503 504 /50x.html;

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

# #server

#}

# https server https ssl加密伺服器

# #server

#}

}

Nginx配置引數中文詳細說明

nginx的配置檔案nginx.conf配置詳解如下 user nobody 定義nginx執行的使用者和使用者組 worker processes 1 程序數 根據硬體調整,通常等於cpu數量或者2倍於cpu。error log logs error.log info 全域性錯誤日誌 日誌級別 d...

nginx配置詳細說明

定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log var log nginx error...

nginx配置詳細說明

執行使用者 user nobody pid檔案 pid logs nginx.pid worker程序數,通常設定等同於cpu數量,auto為自動檢測 worker processes auto worker程序開啟最大檔案數,可cpu 10000設定 worker rlimit nofile 10...