`
sunqi
  • 浏览: 230107 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

nginx 安装选项

阅读更多

yum -y install pcre-devel openssl openssl-devel

./configure --prefix=/home/alisoft/nginx --user=alisoft --group=alisoft --without-http-cache --with-http_stub_status_module


--prefix=<path> - Nginx安装路径。如果没有指定,默认为 /usr/local/nginx。

--sbin-path=<path> - Nginx可执行文件安装路径。只能安装时指定,如果没有指定,默认为<prefix>/sbin/nginx。

--conf-path=<path> - 在没有给定-c选项下默认的nginx.conf的路径。如果没有指定,默认为<prefix>/conf/nginx.conf。

--pid-path=<path> - 在nginx.conf中没有指定pid指令的情况下,默认的nginx.pid的路径。如果没有指定,默认为 <prefix>/logs/nginx.pid。

--lock-path=<path> - nginx.lock文件的路径。

--error-log-path=<path> - 在nginx.conf中没有指定error_log指令的情况下,默认的错误日志的路径。如果没有指定,默认为 <prefix>/logs/error.log。

--http-log-path=<path> - 在nginx.conf中没有指定access_log指令的情况下,默认的访问日志的路径。如果没有指定,默认为 <prefix>/logs/access.log。

--user=<user> - 在nginx.conf中没有指定user指令的情况下,默认的nginx使用的用户。如果没有指定,默认为 nobody。

--group=<group> - 在nginx.conf中没有指定user指令的情况下,默认的nginx使用的组。如果没有指定,默认为 nobody。

--builddir=DIR - 指定编译的目录

--with-rtsig_module - 启用 rtsig 模块

--with-select_module --without-select_module - Whether or not to enable the select module. This module is enabled by default if a more suitable method such as kqueue, epoll, rtsig or /dev/poll is not discovered by configure.

//允许或不允许开启SELECT模式,如果 configure 没有找到更合适的模式,比如:kqueue(sun os),epoll (linux kenel 2.6+), rtsig(实时信号)或者/dev/poll(一种类似select的模式,底层实现与SELECT基本相 同,都是采用轮训方法) SELECT模式将是默认安装模式

--with-poll_module --without-poll_module - Whether or not to enable the poll module. This module is enabled by default if a more suitable method such as kqueue, epoll, rtsig or /dev/poll is not discovered by configure.

--with-http_ssl_module - Enable ngx_http_ssl_module. Enables SSL support and the ability to handle HTTPS requests. Requires OpenSSL. On Debian, this is libssl-dev.

//开启HTTP SSL模块,使NGINX可以支持HTTPS请求。这个模块需要已经安装了OPENSSL,在DEBIAN上是libssl

--with-http_realip_module - 启用 ngx_http_realip_module

--with-http_addition_module - 启用 ngx_http_addition_module

--with-http_sub_module - 启用 ngx_http_sub_module

--with-http_dav_module - 启用 ngx_http_dav_module

--with-http_flv_module - 启用 ngx_http_flv_module

--with-http_stub_status_module - 启用 "server status" 页

--without-http_charset_module - 禁用 ngx_http_charset_module

--without-http_gzip_module - 禁用 ngx_http_gzip_module. 如果启用,需要 zlib 。

--without-http_ssi_module - 禁用 ngx_http_ssi_module

--without-http_userid_module - 禁用 ngx_http_userid_module

--without-http_access_module - 禁用 ngx_http_access_module

--without-http_auth_basic_module - 禁用 ngx_http_auth_basic_module

--without-http_autoindex_module - 禁用 ngx_http_autoindex_module

--without-http_geo_module - 禁用 ngx_http_geo_module

--without-http_map_module - 禁用 ngx_http_map_module

--without-http_referer_module - 禁用 ngx_http_referer_module

--without-http_rewrite_module - 禁用 ngx_http_rewrite_module. 如果启用需要 PCRE 。

--without-http_proxy_module - 禁用 ngx_http_proxy_module

--without-http_fastcgi_module - 禁用 ngx_http_fastcgi_module

--without-http_memcached_module - 禁用 ngx_http_memcached_module

--without-http_limit_zone_module - 禁用 ngx_http_limit_zone_module

--without-http_empty_gif_module - 禁用 ngx_http_empty_gif_module

--without-http_browser_module - 禁用 ngx_http_browser_module

--without-http_upstream_ip_hash_module - 禁用 ngx_http_upstream_ip_hash_module

--with-http_perl_module - 启用 ngx_http_perl_module

--with-perl_modules_path=PATH - 指定 perl 模块的路径

--with-perl=PATH - 指定 perl 执行文件的路径

--http-log-path=PATH - Set path to the http access log

--http-client-body-temp-path=PATH - Set path to the http client request body temporary files

--http-proxy-temp-path=PATH - Set path to the http proxy temporary files

--http-fastcgi-temp-path=PATH - Set path to the http fastcgi temporary files

--without-http - 禁用 HTTP server

--with-mail - 启用 IMAP4/POP3/SMTP 代理模块

--with-mail_ssl_module - 启用 ngx_mail_ssl_module

--with-cc=PATH - 指定 C 编译器的路径

--with-cpp=PATH - 指定 C 预处理器的路径

--with-cc-opt=OPTIONS - Additional parameters which will be added to the variable CFLAGS. With the use of the system library PCRE in FreeBSD, it is necessary to indicate --with-cc-opt="-I /usr/local/include". If we are using select() and it is necessary to increase the number of file descriptors, then this also can be assigned here: --with-cc-opt="-D FD_SETSIZE=2048".

--with-ld-opt=OPTIONS - Additional parameters passed to the linker. With the use of the system library PCRE in FreeBSD, it is necessary to indicate --with-ld-opt="-L /usr/local/lib".

--with-cpu-opt=CPU - 为特定的 CPU 编译,有效的值包括:pentium, pentiumpro, pentium3, pentium4, athlon, opteron, amd64, sparc32, sparc64, ppc64

--without-pcre - 禁止 PCRE 库的使用。同时也会禁止 HTTP rewrite 模块。在 "location" 配置指令中的正则表达式也需要 PCRE 。

--with-pcre=DIR - 指定 PCRE 库的源代码的路径。

--with-pcre-opt=OPTIONS - Set additional options for PCRE building.

--with-md5=DIR - Set path to md5 library sources.

--with-md5-opt=OPTIONS - Set additional options for md5 building.

--with-md5-asm - Use md5 assembler sources.

--with-sha1=DIR - Set path to sha1 library sources.

--with-sha1-opt=OPTIONS - Set additional options for sha1 building.

--with-sha1-asm - Use sha1 assembler sources.

--with-zlib=DIR - Set path to zlib library sources.

--with-zlib-opt=OPTIONS - Set additional options for zlib building.

--with-zlib-asm=CPU - Use zlib assembler sources optimized for specified CPU, valid values are: pentium, pentiumpro

--with-openssl=DIR - Set path to OpenSSL library sources

--with-openssl-opt=OPTIONS - Set additional options for OpenSSL building

--with-debug - 启用调试日志

--add-module=PATH - Add in a third-party module found in directory PATH

分享到:
评论

相关推荐

    nginx一键安装包含自动安装脚本

    2. **设置变量**: 定义安装路径和其他配置选项。 3. **解压与编译**: 自动解压下载的源码包,运行`./configure`,`make`和`make install`命令。 4. **配置Nginx**: 根据需求自定义Nginx的配置文件,如server block...

    nginx安装文件+php安装文件+补丁+源码

    它可能包含了编译Nginx和PHP时的配置选项,帮助用户一键式完成安装。 总的来说,这个压缩包提供了搭建Nginx和PHP服务器环境所需的所有组件,只需按照一定的步骤进行操作,即可实现“直接COPY运行”。这对于开发者来...

    内网安装nginx(离线)

    - 进入Nginx源码目录,执行配置脚本,指定安装路径和其他选项: ``` ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-pcre ``` - 编译并安装Nginx: ``` make && sudo make install `...

    Linux安装nginx服务.docx

    1. **配置Nginx安装选项**: - 进入Nginx源码目录后,使用`./configure`命令配置安装选项: ```bash ./configure --prefix=/usr/local/nginx ``` - 其中`--prefix`参数指定了Nginx的安装路径。 2. **编译Nginx...

    nginx安装.rar

    这里可以指定安装路径、模块等选项,例如:`./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module`。 6. **编译与安装** 配置成功后,运行`make`命令进行编译,再使用`...

    nginx自动安装

    本教程将详细介绍如何在Linux系统上通过自动化脚本来快速安装Nginx,旨在简化传统手动安装过程,提高效率。 一、Nginx简介 Nginx(发音为"engine x")是一款反向代理、负载均衡器以及HTTP缓存服务器,以其事件驱动...

    nginx离线安装依赖g++,gcc,openssl等

    请注意,这只是一个基本的安装流程,实际应用中可能还需要根据具体需求配置其他模块或调整编译选项。同时,确保你的Linux系统满足安装这些软件的最低要求,如足够的磁盘空间、正确的库依赖等。在无网络的环境下,...

    Nginx安装url_hash插件.doc

    进入Nginx源码目录,配置并编译Nginx,确保指定`--with-http_realip_module`选项,以及包含url_hash模块的路径。 ``` cd nginx-0.7.57 ./configure --prefix=/usr/local/nginx --with-...

    nginx安装文档

    【Nginx安装文档】 Nginx是一款高性能的HTTP和反向代理服务器,以其轻量级、稳定性和高并发处理能力而闻名。本文档将详细阐述如何从零开始安装Nginx,帮助初学者轻松掌握这一强大的Web服务器。 1. **系统需求与...

    linux 内网离线的nginx 安装

    进入解压后的Nginx源码目录,配置编译选项,确保指向正确的依赖库路径: ``` cd nginx-1.21.x ./configure --prefix=/usr/local/nginx --with-...

    nginx安装手册

    【Nginx安装手册】 Nginx是一款高性能的HTTP和反向代理服务器,以其轻量级、高并发处理能力而闻名。本安装手册主要针对在Linux...请根据实际环境和需求,合理选择依赖库版本和配置选项,确保Nginx能够发挥最佳性能。

    Nginx源码安装的方法步骤

    一、下载Nginx源文件 进入nginx官网下载nginx的稳定版本,我下载的是1.10.0。 下载:wget ...三、配置Nginx安装选项 我这里只配置安装到/opt目录下,其它选项可执行./configuration

    安装nginx需要的安装包

    安装Nginx的过程通常涉及几个关键步骤,其中包括下载源代码、配置编译选项、编译源代码以及安装到系统路径。在这个过程中,可能会需要依赖一些额外的软件包,如PCRE(Perl Compatible Regular Expressions)库。PCRE...

    nginx-安装,完整全套.zip

    进入解压后的Nginx目录,配置编译选项,然后编译并安装: ``` cd nginx-1.16.1 ./configure --prefix=/usr/local/nginx --with-pcre=/path/to/pcre-8.41 --with-...

    Nginx安装手册(Linux)

    ### Nginx安装手册(Linux) #### 环境准备 在进行Nginx的安装之前,需要确保服务器上已经安装了必要的依赖包。这些依赖包括GCC编译器、pcre库及其开发文件、zlib压缩库及其开发文件以及openssl加密库及其开发文件...

    安装Nginx依赖组件

    ### 安装Nginx依赖组件 ...综上所述,安装Nginx依赖组件不仅涉及到具体的配置选项和技术细节,还需要关注安全性和最佳实践。通过以上介绍,希望能够帮助您更好地理解和配置Nginx,使其成为您网络架构中高效稳定的一员。

    nginx安装工具及配置

    若需自定义编译选项,可从Nginx官网下载源码进行编译安装: - 下载源码:`wget http://nginx.org/download/nginx-1.15.2.tar.gz` - 解压:`tar -zxvf nginx-1.15.2.tar.gz` - 配置:`./configure --prefix=/usr/...

    ubuntu20.04离线无网dpkg安装nginx按完整的deb包

    `--force-depends`选项允许您安装即使有未满足依赖的包,这在离线安装时非常有用。 4. **处理未解决的依赖问题**:如果`dpkg`报告有未解决的依赖,您可能需要找到相应的`.deb`文件并手动安装。查找依赖的命令是: ...

    Nginx源码安装手册

    总结来说,本Nginx源码安装手册详细介绍了在生产环境下安装Nginx的完整过程,包括环境准备、下载源码、编译配置、模块选择和自启动脚本的配置。对于希望部署稳定且可控的Nginx服务器的用户,特别是那些对软件的安全...

Global site tag (gtag.js) - Google Analytics