Ubuntu 17.10にnginxをインストールするメモ

2018年6月21日

1.PGPキーを追加
curl http://nginx.org/keys/nginx_signing.key | sudo apt-key add –

2.リポジトリを一覧に追加
VCNAME=`cat /etc/lsb-release | grep DISTRIB_CODENAME | cut -d= -f2` && sudo -E sh -c “echo \"deb http://nginx.org/packages/ubuntu/ $VCNAME nginx\" >> /etc/apt/sources.list"
VCNAME=`cat /etc/lsb-release | grep DISTRIB_CODENAME | cut -d= -f2` && sudo -E sh -c “echo \"deb-src http://nginx.org/packages/ubuntu/ $VCNAME nginx\" >> /etc/apt/sources.list"

3. nginxをインストール
sudo apt-get update
sudo apt-get install nginx

Linux

Posted by arkgame