ubuntu上升级nginx
- 备份配置文件
1 | cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak |
- 安装相关依赖
1 | apt-get install software-properties-common python-software-properties |
- 添加nginx到apt仓库
1 | add-apt-repository ppa:nginx/stable |
- 升级安装包
1 | apt-get update |
- 安装nginx
1 | apt-get install nginx |
根据提示进行相应的输入。
- 查看nginx版本
1 | nginx -V |