加粗样式#1.19平滑升级1.22
把新版本放入到当前nginx平级目录
解压新版本nginx
#查看nginx配置文件
[root@localhost sbin]# /home/webapp/nginx/sbin/nginx -t
nginx: the configuration file /home/webapp/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /home/webapp/nginx/conf/nginx.conf test is successful
配置文件地址是修改后的需执行配置地址精确目录
./configure --prefix=/home/webapp/nginx --conf-path=/home/webapp/nginx/conf/nginx.conf
执行完后进行make
不要执行make install会覆盖之前版本配置
复制当前启动文件到之前文件下
[root@i nginx-1.22.0]# cp objs/nginx /usr/sbin/nginx
如果报日志错误需要在配置文件中加入以下内容,日志地址以具体路径为准
error_log /home/webapp/nginx1/logs/error.log
如果提示缺少日志,在之前版本nginx中创建logs文件夹以及对应日志文件即可