51CTO博客已为您找到关于nginx模块--with的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及nginx模块--with问答内容。更多nginx模块--with相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
--with-mail_ssl_module 启用ngx_mail_ssl_module支持 --without-mail_pop3_module 禁用pop3协议。 --without-mail_iamp_module 禁用iamp协议。 --without-mail_smtp_module 禁用smtp协议。 --with-google_perftools_module 启用ngx_google_perftools_mdoule支持,调试用,可以用来分析程序性能瓶颈。 --with-cpp_t...
with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -...
--with-mail_ssl_module # ngx1.9之后的stream模块 --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module 在这里,先挑几个常用的解释和配置,后面的课程中对其他的模块使用有对应案例一起解释 1. --with-http_stub_status_module ...
--with-mail \ --with-mail_ssl_module \ --with-file-aio \ --with-http_v2_module \ --with-threads \ --with-stream \ --with-stream_ssl_module make && make install # 查看nginx版本 命令:/usr/sbin/nginx -v 或/usr/sbin/nginx -V ...
STREAM模块:负责实现四层负载功能,默认不会编译进Nginx。你可以通过–with-stream启用STREAM模块。 MAIL模块:Nginx也可以作为邮件服务器的负载均衡,通过–with-mail选项启用。 在上图中,HTTP模块又可以再次细分为3类模块: 请求处理模块:Nginx接收、解析完HTTP报文后,会将请求交给各个HTTP模块处理。比如读取磁盘文件并发送...
--without-mail_smtp_module 禁用smtp协议。 --with-google_perftools_module 启用ngx_google_perftools_mdoule支持,调试用,可以用来分析程序性能瓶颈。 --with-cpp_test_module 启用ngx_cpp_test_module支持。 --add-module= 指定外部模块路径,启用对外部模块的支持。
由于是使用stream方式代理邮件服务器,所以需要--with-stream模块,不要--with-mail模块# 同时需要http代理相关的模块# 安装的路径在当前目录的上一级 --prefix=.. 直接在当前目录安装由于文件冲突会报错[ops@dis-algo nginx-1.20.1]$ ./configure --prefix=.. --with-http_stub_status_module --with-http_...
核心模块:HTTP模块、EVENT模块和MAIL模块 基础模块:HTTP Access模块、HTTP FastCGI模块、HTTP Proxy模块和HTTP Rewrite模块, 第三方模块:HTTP Upstream Request Hash模块、Notice模块和HTTP Access Key模块。 用户根据自己的需要开发的模块都属于第三方模块。正是有了这么多模块的支撑,Nginx的功能才会如此强大。