nginx를 설치합시다.~


Step 1.  PCRE (Perl Compatible Regular Expressions) 설치하기

Perl 호환 정규식 이라고 한다. 먼지는 잘 모르겠지만... 설치해야 한다. 



curl -O ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz

tar zxvf pcre-8.21.tar.gz

./configure --prefix=/usr/local

make

sudo make install



Step 2.  nginx 설치하기

osx에는 svn 이 내장 되어 있다. 



svn checkout svn://svn.nginx.org/nginx/tags/release-1.3.16

./auto/configure
make
sudo make install



Step 3.  nginx 시작하기

command 에 대한 도움말을 볼 수 있다.



sudo /usr/local/nginx/sbin/nginx -?

nginx version: nginx/1.3.16

Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]


Options:

  -?,-h         : this help

  -v            : show version and exit

  -V            : show version and configure options then exit

  -t            : test configuration and exit

  -q            : suppress non-error messages during configuration testing

  -s signal     : send signal to a master process: stop, quit, reopen, reload

  -p prefix     : set prefix path (default: /usr/local/nginx/)

  -c filename   : set configuration file (default: conf/nginx.conf)

  -g directives : set global directives out of configuration file



서버를 시작해 보자.



sudo /usr/local/nginx/sbin/nginx



확인하기.

성공이다~


※ 참고 사이트

pcre - http://www.pcre.org/

nginx - http://nginx.org/en/download.html


'Server,Was' 카테고리의 다른 글

Nginx 기본 설정하기  (0) 2013.04.24
Nginx Ubuntu에서 설치하기  (0) 2013.04.23
war 파일 생성 하기  (0) 2013.02.17
Tomcat7 Web Application Deploy 하기  (0) 2013.02.01
Apache Friends XAMPP 설치 하기  (0) 2013.01.30

+ Recent posts