Skip to content

Instantly share code, notes, and snippets.

@rahul286
Created June 11, 2015 06:25
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save rahul286/18f7ba35e8215ce95263 to your computer and use it in GitHub Desktop.
Save rahul286/18f7ba35e8215ce95263 to your computer and use it in GitHub Desktop.
nginx-plus installation
mkdir /etc/ssl/nginx
wget -P /etc/ssl/nginx/ https://cs.nginx.com/static/files/CA.crt
## move nginx-repo.crt to /etc/ssl/nginx/nginx-repo.crt
## move nginx-repo.key to /etc/ssl/nginx/nginx-repo.key
wget http://nginx.org/keys/nginx_signing.key
apt-key add nginx_signing.key
apt-get install apt-transport-https libgnutls26 libcurl3-gnutls
printf "deb https://plus-pkgs.nginx.com/ubuntu `lsb_release -cs` nginx-plus\n" >/etc/apt/sources.list.d/nginx-plus.list
mv /etc/apt/apt.conf.d
wget -P /etc/apt/apt.conf.d https://cs.nginx.com/static/files/90nginx
apt-get update
apt-get install nginx-plus
@idanzam
Copy link

idanzam commented Jul 11, 2022

@rahul286
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment