下面小编就为大家带来一篇讲解docker nginx编译参数,nginx容器配置文件在哪里,pid,错误日志,模块文件路径。小编觉得挺不错的,现在就分享给大家,如果你在找docker nginx版本,docker nginx装在哪里,docker nginx安装路径,也可以做个交流。一起跟随小编过来看看吧。
docker nginx编译参数,nginx容器配置文件在哪里,pid,错误日志,模块文件路径
作者:微信小程序培训师 发布时间:2019-12-27
ngnix是很多公司使用的web服务器,
以前通常会自己编译安装,
但是docker容器出来后,
有些朋友会使用docker 官方的nginx镜像生成容器,
下面是nginx编译的参数:
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-compat \
--with-file-aio \
--with-threads \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--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-mail \
--with-mail_ssl_module \
--with-stream \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-cc-opt='-g \
-O2 \
-fdebug-prefix-map=/data/builder/debuild/nginx-1.17.6/debian/debuild-base/nginx-1.17.6=. \
-fstack-protector-strong \
-Wformat \
-Werror=format-security \
-Wp,-D_FORTIFY_SOURCE=2 \
-fPIC' \
--with-ld-opt='-Wl,-z,relro \
-Wl,-z,now \
-Wl,--as-needed \
-pie'
可以看到docker nginx现在使用的latst最新版1.17.6,
安装位置是在:/etc/nginx
主程序路径:/usr/sbin/nginx
nginx模块位置是:/usr/lib/nginx/modules
docker nginx配置文件所在位置:/etc/nginx/nginx.conf
nginx错误日志路径:/var/log/nginx/error.log
nginx访问日志路径:/var/log/nginx/access.log
nginx pid所在位置是:/var/run/nginx.pid
运行nginx时使用的用户和用户组都是nginx
猛击这里,
观看子恒老师《微信小程序开发》系列视频
了解实现过程和下载相关源代码
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
docker nginx编译参数,nginx容器配置文件在哪里,pid,错误日志,模块文件路径链接:https://www.qinziheng.com/details/8841/
docker nginx编译参数,nginx容器配置文件在哪里,pid,错误日志,模块文件路径相关文章