Nginx 编译安装配置

·
2024年9月11日
·
372 次阅读
·
0 条评论
·
字数:1060,阅读约4分钟
·
未分类

 

Configure

./configure --prefix=/nginx/ --user=www-data --group=www-data --with-compat --with-debug --with-file-aio --with-threads --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_gunzip_module --with-http_auth_request_module --with-http_secure_link_module --with-http_gzip_static_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-stream=dynamic --with-stream_ssl_module --with-http_realip_module --with-pcre --with-pcre-jit --with-stream_ssl_preread_module --with-http_degradation_module --with-http_random_index_module

 

自启动服务

服务文件位置

/lib/systemd/system/nginx.service

 

内容

[Unit]
Description=Nginx Service
After=network.target

[Service]
Type=forking
ExecStart=/nginx/sbin/nginx
ExecReload=/nginx/sbin/nginx -s reload
ExecStop=/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

 

配置文件位置

/nginx/conf/nginx.conf

 

THE END
感谢您的阅读,制作不易,转载请注明出处。
分享
评论 抢沙发
登录后可见的头像-Trees 的秘密基地
欢迎您留下宝贵的见解!
提交
登录后可见的头像-Trees 的秘密基地
欢迎您留下宝贵的见解!
提交

请填写昵称

图形验证码
私密评论
请填写昵称 表情 代码 图片

    暂无评论内容