Last active
August 29, 2015 13:58
-
-
Save maxclaus/10329642 to your computer and use it in GitHub Desktop.
install nginx stable version on ubuntu 13.10
This file contains 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
# for <= ubuntu 12.04 | |
sudo apt-get install python-software-properties | |
# for >= ubuntu 12.10 | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository ppa:nginx/stable | |
sudo apt-get update | |
sudo apt-get install nginx | |
nginx -v | |
# nginx version: nginx/1.4.7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment