1. 程式人生 > >nginx 支持的命令行參數

nginx 支持的命令行參數

sage def start 幫助 1.9 default ocs with configure

Command-line parameters
命令行參數


nginx supports the following command-line parameters:
nginx支持以下命令行參數


-? | -h — print help for command-line parameters.
-? | -h —打印命令行參數的幫助


-c file — use an alternative configuration file instead of a default file.
-c file —使用可選的配置文件替代默認的配置文件


-g directives — set global configuration directives, for example,
-g 指令 —設置全局配置指令,例如
nginx -g "pid /var/run/nginx.pid; worker_processes sysctl -n hw.ncpu

;"


-p prefix — set nginx path prefix, i.e. a directory that will keep server files (default value is /usr/local/nginx).
-p prefix —設置nginx的預設路徑。例如:一個將要保存服務器文件的目錄(默認值是/usr/local/nginx)


-q — suppress non-error messages during configuration testing.
-q —在配置文件測試期間抑制非錯誤消息


-s signal — send a signal to the master process. The argument signal can be one of:
-s 信號 — 發送一個信號給主進程。參數信號可以是下列之一:
stop — shut down quickly
stop — 迅速關閉
quit — shut down gracefully
quit — 優雅的關閉
reload — reload configuration, start the new worker process with a new configuration, gracefully shut down old worker processes.
reload — 重載配置文件,用新的配置文件開啟新的工作進程。優雅的關閉舊的進程。(也就是等舊的進程完成工作以後再結束它,不接受新的工作。)
reopen — reopen log files
reopen — 重新打開日誌文件


-t — test the configuration file: nginx checks the configuration for correct syntax, and then tries to open files referred in the configuration.
-t —測試配置文件:nginx檢查配置文件的語法,然後嘗試打開配置文件中涉及的文件。


-T — same as -t, but additionally dump configuration files to standard output (1.9.2).
-T — 與-t參數一樣,但另外還要將配置文件轉儲到標準輸出。


-V — print nginx version, compiler version, and configure parameters.
-V — 打印nginx的版本,編譯版本和配置參數


原文鏈接: http://nginx.org/en/docs/switches.html

nginx 支持的命令行參數