-
-
Save philiparthurmoore/3bff87ddfd2a267fa728 to your computer and use it in GitHub Desktop.
Install the latest nginx from source for Ubuntu 14.04
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
| #Install the PCRE library needed by nginx | |
| sudo apt-get install libpcre3 libpcre3-dev | |
| #Replace by the latest version number found on http://nginx.org/ | |
| wget http://nginx.org/download/nginx-1.7.4.tar.gz | |
| tar -xvf nginx-1.7.4.tar.gz | |
| cd nginx-1.7.4 | |
| ./configure | |
| make | |
| sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment