`
Poechant
  • 浏览: 227463 次
博客专栏
Bebe66e7-3a30-3fc9-aeea-cfa3b474b591
Nginx高性能Web服务...
浏览量:24243
5738817b-23a1-3a32-86de-632d7da73b1e
Cumulus实时媒体服务...
浏览量:22047
社区版块
存档分类
最新评论

Nginx源码完全注释(9)nginx.c: ngx_get_options

 
阅读更多

Nginx源码完全注释(9)nginx.c: ngx_get_options

  • 作者:柳大·Poechant(钟超)
  • 博客:Blog.CSDN.net/Poechant
  • 邮箱:zhongchao.ustc#gmail.com (# -> @)
  • 日期:2012/09/29

本文分析 ngxin.c 中的 ngx_get_options 函数,其影响:

nginx.c 中的:


static ngx_uint_t   ngx_show_help;
static ngx_uint_t   ngx_show_version;
static ngx_uint_t   ngx_show_configure;
static u_char      *ngx_prefix;
static u_char      *ngx_conf_file;  
static u_char      *ngx_conf_params;    
static char        *ngx_signal;

ngx_cycle.c 中的:


ngx_uint_t             ngx_test_config;
ngx_uint_t             ngx_quiet_mode;

ngx_process_cycle.c(src/os/win32 或 src/os/unix)中的:


ngx_uint_t    ngx_process;

这些变量的作用域由 static 限制为 nginx.c 文件。ngx_get_options 函数如下:


// 传入的是 main 函数的两个参数 argc 和 argv
static ngx_int_t
ngx_get_options(int argc, char *const *argv)
{
    u_char     *p;
    ngx_int_t   i;

    // 对于每一个 argv(注意是从 1 开始,因为 0 是 "nginx")
    for (i = 1; i < argc; i++) {

        // p 为第 i 个参数的地址
        p = (u_char *) argv[i];

        // 
        if (*p++ != '-') {
            ngx_log_stderr(0, "invalid option: \"%s\"", argv[i]);
            return NGX_ERROR;
        }

        // 之所以 while 循环是因为一个减号可以带过个参数,比如 -hV
        while (*p) {

            // 注意 p 被加 1
            switch (*p++) {

            // 问号和 h 都是显示帮助信息和版本信息
            case '?':
            case 'h':
                ngx_show_version = 1;
                ngx_show_help = 1;
                break;

            // 小 v 显示版本信息
            case 'v':
                ngx_show_version = 1;
                break;

            // 大 v 显示版本信息和配置信息
            case 'V':
                ngx_show_version = 1;
                ngx_show_configure = 1;
                break;

            // t 用于测试配置文件
            case 't':
                ngx_test_config = 1;
                break;

            // q 表示安静模式
            case 'q':
                ngx_quiet_mode = 1;
                break;

            // p 为指定 prefix path
            case 'p':
                if (*p) {
                    ngx_prefix = p;
                    goto next;
                }

                if (argv[++i]) {
                    ngx_prefix = (u_char *) argv[i];
                    goto next;
                }

                ngx_log_stderr(0, "option \"-p\" requires directory name");
                return NGX_ERROR;

            // 使用指定的配置文件
            case 'c':
                if (*p) {
                    ngx_conf_file = p;
                    goto next;
                }

                if (argv[++i]) {
                    ngx_conf_file = (u_char *) argv[i];
                    goto next;
                }

                ngx_log_stderr(0, "option \"-c\" requires file name");
                return NGX_ERROR;

            // 在配置文件之外设置全局指令
            case 'g':
                if (*p) {
                    ngx_conf_params = p;
                    goto next;
                }

                if (argv[++i]) {
                    ngx_conf_params = (u_char *) argv[i];
                    goto next;
                }

                ngx_log_stderr(0, "option \"-g\" requires parameter");
                return NGX_ERROR;

            // s 为 signal,即给 Nginx 发送信号
            case 's':
                if (*p) { // 下一个参数紧跟在 -s 后,比如 -sstop
                    ngx_signal = (char *) p;

                } else if (argv[++i]) { // 下一个参数
                    ngx_signal = argv[i];

                } else { // -s 没有带参数时
                    ngx_log_stderr(0, "option \"-s\" requires parameter");
                    return NGX_ERROR;
                }

                // 四个信号分别对应:停止、退出、重新打开文件(日志文件等)、重新加载配置文件
                if (ngx_strcmp(ngx_signal, "stop") == 0
                    || ngx_strcmp(ngx_signal, "quit") == 0
                    || ngx_strcmp(ngx_signal, "reopen") == 0
                    || ngx_strcmp(ngx_signal, "reload") == 0)
                {
                    ngx_process = NGX_PROCESS_SIGNALLER;
                    goto next;
                }

                ngx_log_stderr(0, "invalid option: \"-s %s\"", ngx_signal);
                return NGX_ERROR;

            default:
                ngx_log_stderr(0, "invalid option: \"%c\"", *(p - 1));
                return NGX_ERROR;
            }
        }

    next:

        continue;
    }

    return NGX_OK;
}

帮助信息如下:

Options:
  -?,-h         : this help
  -v            : show version and exit
  -V            : show version and configure options then exit
  -t            : test configuration 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: /usr/local/nginx/)
  -c filename   : set configuration file (default: conf/nginx.conf)
  -g directives : set global directives out of configuration file

v 版本信息形式如下:

nginx version: nginx/1.3.5

V 版本信息如下:

nginx version: nginx/1.3.5
built by gcc 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) 
configure arguments: --with-pcre=/home/michael/packages.d/pcre-8.20 --with-zlib=/home/michael/packages.d/zlib-1.2.7

-

转载请注明来自柳大·Poechant(钟超)的CSDN博客

-

分享到:
评论

相关推荐

    nginx-1.18.0-2.el7.ngx.x86-64.rpm安装包(含有部署手册)

    nginx-1.18.0-2.el7.ngx.x86_64.rpm安装包(含有部署手册) nginx-1.18.0-2.el7.ngx.x86_64.rpm安装包(含有部署手册) nginx-1.18.0-2.el7.ngx.x86_64.rpm安装包(含有部署手册) nginx-1.18.0-2.el7.ngx.x86_64.rpm...

    nginx-1.18.0-1.el7.ngx.x86_64

    在这个名为 "nginx-1.18.0-1.el7.ngx.x86_64" 的压缩包中,包含了 Nginx 的离线安装包,适用于 CentOS 7 系统。这意味着即使在没有网络连接的情况下,我们也可以为 CentOS 7 安装和配置 Nginx。 首先,我们需要了解...

    nginx-1.22.0-1.el7.ngx.x86_64_ngx_rtmp_ipv6.rpm

    2022年5月30日 官方当前最新稳定版本nginx 二进制rpm包 适用于x86架构centos7 rhel7版本操作系统升级安装nginx 该包开启了ipv6支持,添加了nginx-rtmp模块支持

    nginx-1.20.0-1.el7.ngx.x86_64.rpm

    nginx-1.20.0-1.el7.ngx.x86_64

    nginx-1.22.0-1.el7.ngx.x86_64_ngx_flv_ipv6.rpm

    2022年5月30日,官方当前最新稳定版本nginx 1.22.0 已经开启ipv6支持,nginx-http-flv-module模块支持 适用于x86架构的centos7 rhel7系列版本操作系统安装升级使用或者修复安全漏洞等

    nginx-1.6.2-1.el7.centos.ngx.x86_64.rpm

    很难找的 centos7 nginx-1.6.2-1.el7.centos.ngx.x86_64.rpm 包

    nginx-1.22.0-1.el7.ngx.x86_64_ipv6.rpm

    官方最新稳定版本nginx 1.22.0 ,开启了ipv6支持的二进制rpm包 适用于centos7 rhel7系列版本操作系统升级nginx,修复安全漏洞

    nginx-1.21.6-1.el7-rtmp.ngx.x86_64.tar.gz

    本资源提供的 "nginx-1.21.6-1.el7-rtmp.ngx.x86_64.tar.gz" 是 Nginx 的一个特定版本,包含了 RTMP (Real-Time Messaging Protocol) 模块,适用于实时流媒体传输,如直播服务。 **RTMP 模块介绍** RTMP 是 Adobe ...

    nginx-1.18.0-1.el7.ngx.x86_64.rpm

    CentOS下nginx服务安装包,直接yum即可完成安装。Nginx (engine x) 是一个高性能的HTTP和web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рам...

    nginx-1.20.1-1.el7.ngx.x86_64.rpm

    linux下的nginx--rpm安装包

    nginx-1.18.0-2.el7.ngx.x86_64.rpm

    CentOS下nginx服务安装包,直接yum即可完成安装。Nginx (engine x) 是一个高性能的HTTP和web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рам...

    ngx_stream_module.so

    nginx1.20.2

    nginx-1.26.2-1.el7.ngx.x86-64.rpm

    nginx官网不再更新centos7版,此rpm构建于nginx最新稳定版1.26.2

    nginx-1.24.0-1.el7.ngx.x86-64-ipv6.rpm

    2023年5月26日,当前最新稳定版本nginx 1.24.0 已开启ipv6支持 二进制rpm包 适用于centos7 redhat 7系列的操作系统使用 适用于x86架构 主要修复安全漏洞、升级更新nginx版本,增强web服务器安全性

    nginx-1.12.0-1.el7.ngx.x86_64.rpm

    主要用于离线安装nginx 不依赖其他程序

    ngx_devel_kit-0.3.0

    ngx_devel_kit(通常缩写为 NDK)是一个针对Nginx的模块开发工具集,它为构建自定义Nginx模块提供了便利。在Nginx生态系统中,NDK是一个重要的扩展工具,允许开发者利用C语言直接操作Nginx的内部结构,以实现更高级...

    nginx-1.8.0-1.el6.ngx.x86_64.cpio

    nginx-1.8.0-1.el6.ngx.x86_64.rpm libpcre.so.0()(64bit) 被 nginx-1.18.0-1.el6.ngx.x86_64 需要

    nginx-1.24.0-2.el7.x86-64.rpm

    、limit_conn_module、ngx_http_limit_req_module、ngx_http_access_module、ngx_http_auth_basic_module、ngx_http_fastcgi_module、ngx_http_gzip_module、ngx_http_proxy_module、ngx_http_upstream_module、ngx_...

    nginx-1.22.1-1.sles12.ngx.x86-64.rpm文件(分享给需要的同学)

    nginx-1.22.1-1.sles12.ngx.x86_64.rpm文件 nginx-1.22.1-1.sles12.ngx.x86_64.rpm文件 nginx-1.22.1-1.sles12.ngx.x86_64.rpm文件 nginx-1.22.1-1.sles12.ngx.x86_64.rpm文件 nginx-1.22.1-1.sles12.ngx.x86_64.rpm...

    centos7 nginx离线安装包 nginx-1.20.1-2.el7.x86_64

    在完全无互联网连接的情况下,离线安装nginx。 nginx版本号:nginx-1.20.1-2.el7.x86_64 食用方法: 1.解压 2.进入解压目录 3.rpm安装全部 4.安装完成

Global site tag (gtag.js) - Google Analytics