3、Nginx配置文件介紹

  • Nginx的配置語法
  1.  配置文件由指令與指令塊構成
  2. 每條指令以;分號結尾,指令與參數以空格符號分隔
  3. 指令塊以{}大括號將多條指令組織在一塊兒
  4. include語句容許組合多個配置文件以提高可維護性
  5. 使用#號添加註釋,提升可讀性
  6. 使用$符號使用變量
  7. 部分指令的參數支持正規表達式
  • 配置參數的時間單位

       

  • 配置參數的空間單位

       

  • Nginx命令行

    1.nginx 發送信號nginx

#發送reload信號 從新加載配置文件(同kill -9)
[root@i-vvwtw5ne sbin]# ./nginx  -s reload 
#發送stop信號 馬上中止服務
[root@i-vvwtw5ne sbin]# ./nginx  -s stop 
#發送quit信號 優雅的中止服務
[root@i-vvwtw5ne sbin]# ./nginx  -s quit 
#發送reopen信號 從新開始記錄日誌文件
[root@i-vvwtw5ne sbin]# ./nginx  -s reopen 

      2. 獲取nginx的幫助測試

[root@i-vvwtw5ne sbin]# ./nginx  -h
nginx version: nginx/1.16.1
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]

Options:
  -?,-h         : this help
  -v            : show version and exit
  -V            : show version and configure options then exit
  -t            : test configuration and exit
  -T            : test configuration, dump it and exit
  -q            : suppress non-error messages during configuration testing
  -s signal     : send signal to a master process: stop, quit, reopen, reload
  -p prefix     : set prefix path (default: /opt/nginx/)
  -c filename   : set configuration file (default: conf/nginx.conf)
  -g directives : set global directives out of configuration file

    3. nginx默認用$installPath/conf/nginx.conf的配置文件,也能夠使用指定的配置文件,以下ui

[root@i-vvwtw5ne sbin]# ./nginx  -c /opt/nginx/conf/mynginx.conf

      4. 測試配置文件是否有語法錯誤this

[root@i-vvwtw5ne sbin]# ./nginx  -t

      5. 打印nignx的版本信息命令行

[root@i-vvwtw5ne sbin]# ./nginx -v
相關文章
相關標籤/搜索