Created
December 8, 2015 12:44
-
-
Save one-aalam/0e723e6f29ca75d5079f to your computer and use it in GitHub Desktop.
Mac OS X nginx installation from source
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
| # download PCRE and nginx source | |
| sudo mkdir -p /usr/local/src | |
| cd /usr/local/src | |
| # copy PCRE to directory | |
| # eg. cp /tmp/pcre-8.20.tar.gz /usr/local/src/ | |
| tar xzvf pcre-8.20.tar.gz | |
| cd pcre-8.20 | |
| ./configure --prefix=/usr/local | |
| make && sudo make install && make clean | |
| cd .. | |
| # copy nginx to directory | |
| tar xzvf nginx-1.0.11.tar.gz | |
| cd nginx-1.0.11 | |
| ./configure --prefix=/usr/local --with-http_ssl_module | |
| make && sudo make install && make clean | |
| # edit your PATH variable, make sure it include /usr/local/sbin | |
| vim ~/.profile | |
| . ~/.profile | |
| which nginx | |
| # start nginx | |
| sudo nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment