zoukankan      html  css  js  c++  java
  • Nginx install

    The build is configured using the configure command. It defines various aspects of the system, including the methods nginx is allowed to use for connection processing. At the end it creates a Makefile.

    The configure command supports the following parameters:

    Files and permissions

    --prefix=path - defines a directory that will keep server files. This same directory will also be used for all relative paths set by configure (except for paths to libraries sources) and in the nginx.conf configuration file. It is set to the /usr/local/nginx directory by default.

    --sbin-path=path - sets the name of an nginx executable file. This name is used only during installation. By default the file is named prefix/sbin/nginx.

    --conf-path=path — sets the name of an nginx.conf configuration file. If needs be, nginx can always be started with a different configuration file, by specifying it in the command-line parameter -c file. By default the file is named prefix/conf/nginx.conf.

    --pid-path=path — sets the name of an nginx.pid file that will store the process ID of the main process. After installation, the file name can always be changed in the nginx.conf configuration file using the pid directive. By default the file is named prefix/logs/nginx.pid.

    --error-log-path=path — sets the name of the primary error, warnings, and diagnostic file. After installation, the file name can always be changed in the nginx.conf configuration file using the error_log directive. By default the file is named prefix/logs/error.log. The special "stderr" value tells nginx to log pre-configuration messages to the standard error.

    --http-log-path=path — sets the name of the primary request log file of the HTTP server. After installation, the file name can always be changed in the nginx.conf configuration file using the access_log directive. By default the file is named prefix/logs/access.log.

    --user=name — sets the name of an unprivileged user whose credentials will be used by worker processes. After installation, the name can always be changed in the nginx.conf configuration file using the user directive. The default user name is nobody.

    --group=name — sets the name of a group whose credentials will be used by worker processes. After installation, the name can always be changed in the nginx.conf configuration file using the user directive. By default, a group name is set to the name of an unprivileged user.

    Event loop

    --with-select_module
    --without-select_module — enables or disables building a module that allows the server to work with the select() method. This module is built automatically if the platform does not appear to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll. --with-poll_module
    --without-poll_module — enables or disables building a module that allows the server to work with the poll() method. This module is built automatically if the platform does not appear to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll.

    Optional modules

    --without-http_gzip_module — disables building a module that compresses responses of an HTTP server. The zlib library is required to build and run this module.

    --without-http_rewrite_module — disables building a module that allows an HTTP server to redirect requests and change URI of requests. The PCRE library is required to build and run this module. The module is experimental — its directives may change in the future.

    --without-http_proxy_module — disables building an HTTP server proxying module.

    --with-http_ssl_module — enables building a module that adds the HTTPS protocol support to an HTTP server. This module is not built by default. The OpenSSL library is required to build and run this module.

    --with-pcre=path — sets the path to the sources of the PCRE library. The library distribution (version 4.4 — 8.21) needs to be downloaded from the PCRE site and extracted. The rest is done by nginx's ./configure and make. The library is required for regular expressions support in the location directive and for the ngx_http_rewrite_module module. See notes below for using system PCRE on FreeBSD systems.

    --with-pcre-jit — builds the PCRE library with "just-in-time compilation" support.

    --with-zlib=path — sets the path to the sources of the zlib library. The library distribution (version 1.1.3 — 1.2.5) needs to be downloaded from the zlib site and extracted. The rest is done by nginx's ./configure and make. The library is required for the ngx_http_gzip_module module.

    Compilation controls

    --with-cc-opt=parameters — sets additional parameters that will be added to the CFLAGS variable.

    --with-ld-opt=parameters — sets additional parameters that will be used during linking.

    Example

    Example of parameters usage (all of this needs to be typed in one line):

       ./configure
           --sbin-path=/usr/local/nginx/nginx
           --conf-path=/usr/local/nginx/nginx.conf
           --pid-path=/usr/local/nginx/nginx.pid
           --with-http_ssl_module
           --with-pcre=../pcre-4.4
           --with-zlib=../zlib-1.1.3
    

    Notes

    When using the system PCRE library under FreeBSD, the following options should be specified:

       --with-ld-opt="-L /usr/local/lib" 
       --with-cc-opt="-I /usr/local/include"
    

    If the number of files supported by select() needs to be increased it can also be specified like this:

       --with-cc-opt="-D FD_SETSIZE=2048"
     
    安装的时候遇到几个错误:
    make[1]: *** [/usr/local/pcre/Makefile] Error 127
    make[1]: *** [objs/src/http/modules/ngx_http_log_module.o] Error 1
     
    由于初次安装nginx, 百度nginx安装教程,Nginx需要几个依赖软件:
    分别为:zlib , pcre , openssl
    安装的时候出现以上错误,是我指定的是编译后安装的目录,其实三个依赖包都是指定源码解压后的目录,非安装目录。

    ./configure
    --prefix=/usr/local/nginx
    --sbin-path=/usr/local/nginx/nginx
    --conf-path=/usr/local/nginx/nginx.conf
    --pid-path=/usr/local/nginx/nginx.pid
    --with-http_ssl_module
    --with-http_dav_module
    --with-http_ssl_module  
    --with-pcre=../pcre-8.36  
    --with-zlib=../zlib-1.2.8
    --with-openssl=../openssl-1.0.2c 
    
    
     
     
    Growing old is mandatory, growing up is optional .
  • 相关阅读:
    Mysql基础3-数据操作语言DML-数据查询语言DQL
    Mysql基础2-数据定义语言DDL
    Mysql基础1-基础语法-字段类型
    php源码建博客5--建库建表-配置文件-错误日志
    PHP基础4--函数-数组
    php源码建博客4--实现MVC结构微型框架
    PHP基础3--文件加载-错误处理
    php源码建博客3--区分平台的MVC结构
    php源码建博客2--实现单入口MVC结构
    php源码建博客1--搭建站点-实现登录页面
  • 原文地址:https://www.cnblogs.com/gyming/p/4781887.html
Copyright © 2011-2022 走看看