Created
December 9, 2020 11:37
-
-
Save grumpysi/4e21fb8e2df943ff18a236b5eeeb5af0 to your computer and use it in GitHub Desktop.
Laravel Forge provisioned server: Upgrade Nginx 1.15.8 to 1.18.0 on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
apt list --upgradable | |
mkdir nginx-backup2 | |
sudo cp -r /etc/nginx/* /etc/nginx-backup2/ | |
sudo add-apt-repository ppa:nginx/stable | |
sudo apt update | |
apt list --upgradable | |
... | |
nginx/bionic 1.18.0-3ubuntu1+bionic1 all [upgradable from: 1.15.8-0+bionic0] | |
nginx-common/bionic 1.18.0-3ubuntu1+bionic1 all [upgradable from: 1.15.8-0+bionic0] | |
nginx-full/bionic 1.18.0-3ubuntu1+bionic1 amd64 [upgradable from: 1.15.8-0+bionic0] | |
... | |
sudo apt upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment