zoukankan      html  css  js  c++  java
  • nginx命令行参数

    通过控制台进入nginx目录后

    1. 启动nginx

    start nginx 或
    nginx.exe

    2. 重启nginx

    nginx -s reload

    3. 停止nginx

    nginx -s stop 或
    nginx -s quit
    stop是快速停止nginx,可能并不保存相关信息;quit是完整有序的停止nginx,并保存相关信息。

    nginx命令行参数说明NginxCommandLine


    Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]
    • 1
    Options说明
    -?,-h Print help.
    -v Print version.
    -V Print nginx version, compiler version and configure parameters.
    -t Don’t run, just test the configuration file.
    -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: /usr/local/nginx/)
    -c configPath Specify which configuration file Nginx should use instead of the default.
    -g directives Set global directives.
  • 相关阅读:
    MYSQL之基本操作
    Python操作Mysql之基本操作
    编辑器
    iOS项目评估报告
    mac安装as配置
    屏幕适配
    CocoaPods配置步骤
    android网络监测
    获取通讯录
    json解析
  • 原文地址:https://www.cnblogs.com/yanzi-meng/p/9414005.html
Copyright © 2011-2022 走看看