本文讲解Nginx的编译安装配置的结构,详细解释每一行的作用以及含义
#查看当前系统安装的Nginx编译配置
nginx -V
#Nginx配置反馈文件
configure arguments:
--prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy \
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid \
--lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-compat --with-debug --with-file-aio --with-google_perftools_module \
--with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_degradation_module \
--with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic \
--with-http_mp4_module --with-http_perl_module=dynamic --with-http_random_index_module --with-http_realip_module \
--with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module \
--with-http_v2_module --with-http_xslt_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit \
--with-stream=dynamic --with-stream_ssl_module --with-stream_ssl_preread_module --with-threads \
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' \
--with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'
#------------------分割符号----------------------------
#上面的配置文件拆解
--prefix=/usr/share/nginx :Nginx的安装目录
--sbin-path=/usr/sbin/nginx :可执行程序文件存放位置,用于确定可执行文件的位置,Service引用位置与这个位置相同
--modules-path=/usr/lib64/nginx/modules :第三方插件存放的位置(在编译的时候指定插件存放的位置,编译后无需此目录)
--conf-path=/etc/nginx/nginx.conf :Nginx配置文件所在位置(也可以说是Nginx主配置文件的位置)
--error-log-path=/var/log/nginx/error.log :错误日志文件保存位置
--http-log-path=/var/log/nginx/access.log :HTTP访问日志记录保存位置
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body :配置客户端上传的缓冲区目录位置(大型服务需要设置此参数,一般建议缓冲区放在速度快的硬盘里面)
--http-proxy-temp-path=/var/lib/nginx/tmp/proxy :配置反向代理缓冲目录,用于缓冲反向代理目标服务器的缓存文件
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi :字面意思是FastCGI的缓存文件存储路径
--http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi :uwsgi服务器缓存文件位置
--http-scgi-temp-path=/var/lib/nginx/tmp/scgi :SCGI服务器接收到的数据文件缓存目录
--pid-path=/run/nginx.pid :指定当前的pid文件存放位置
--lock-path=/run/lock/subsys/nginx :lock文件保存的目录
--user=nginx --group=nginx :Nginx所属的用户和用户组,再编译之前需要设置相同的用户和用户组,不然编译会报错,运行环境也需要配置用户和用户组,不然在运行软件的时候也会报错
#----------------启用组件-----------------------
--with-google_perftools_module :启用ngx_google组件,用于分析性能瓶颈
--with-http_addition_module :启用过滤器,分步响应请求
--with-http_auth_request_module :启用统一用户权限验证
--with-http_dav_module :Nginx官方的WebDav模块
--with-http_degradation_module :内存不足的时候会返回HTTP 204错误代码或者HTTP 444错误代码
--with-http_flv_module :启用flv支持,使用基于时间的偏移量文件
--with-http_gzip_static_module :在线压缩输出数据流
--with-http_image_filter_module=dynamic :图片缩略图功能,调整为动态
--with-http_mp4_module :启用对在线mp4视频文件支持
--with-http_perl_module=dynamic :支持构建嵌入式动态Perl模块
--with-http_random_index_module :从目录随机挑选一个目录索引
--with-http_realip_module :从报文头中更改客户端的IP地址,默认为关
--with-http_secure_link_module :计算和检查要求所需的安全链接网址
--with-http_slice_module :支持构建将请求拆分为子请求
--with-http_ssl_module :启用HTTPS支持,没这个就无法启用HTTPS模式
--with-http_stub_status_module :查看Nginx的状态页面
--with-http_sub_module :允许文本替换Nginx响应中的文本
--with-http_v2_module :支持HTTP/2模块
--with-http_xslt_module=dynamic :支持使用一个或者多个XSLT样式表转换XML响应模块
--with-mail=dynamic :启用POP3,IAMP4,SMTP代理模块
--with-mail_ssl_module:启用邮件代理模块的SSL功能
--with-pcre :启用pcre库
--with-pcre-jit :构建pcre库中间的pcre-jit指令
--with-stream=dynamic :允许为TCP/UDP代理和负载均衡模块
--with-stream_ssl_module :TCP/UDP流模块添加SSL/TLS协议支持
--with-stream_ssl_preread_module :在不终止SSL/TLS的情况下从消息中间获取信息
--with-threads :启用线程池
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong :设置添加到GFLAGS变量参数
#下面的参数实在是看不懂,所以就不解释了,那行参数写的过于复杂
评论