Ubuntu 或者 Debian 的官方源自带的nginx版本不是最新的,如果需要安装并更新最新稳定版本的nginx,推荐添加nginx官方源:
sudo vim /etc/apt/sources.list
添加
deb lucid nginx
deb-src lucid nginx
然后运行:
apt-get update
打住,此时会有个警告:
W: GPG error: lucid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY ABF5BD827BD9BF62
你可以忽视之,通过命令继续安装。但是更好的做法是,添加上 nginx 的公钥,用以验证。
cd /tmp/
wget
cat nginx_signing.key | sudo apt-key add -
再重新更新
apt-get update
然后就可以了。
#安装
apt-get install nginx
#升级
apt-get upgrade #注意保留nginx旧的配置文件
THE END.