NGINX 설치하기

web 2009. 7. 13. 21:31

최근에 NGINX라고 http 서버 성능이 좋다고 해서 서버를 설치해본다. 성능 평가는 추후에..

http://www.nginx.net/

참조(http://www.mman.pe.kr/?p=53)


yum install pcre
yum install pcre-devel
yum install zlib
yum install zlib-devel
yum install openssl
yum install openssl-devel

./configure --sbin-path=/usr/local/sbin --with-http_ssl_module \
--with-http_ssl_module --with-http_realip_module --with-http_addition_module \
--with-http_sub_module --with-http_dav_module --with-http_stub_status_module --with-mail \
--with-mail_ssl_module --with-cc-opt="-I /usr/include/pcre" --pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/subsys/nginx --conf-path=/etc/nginx/nginx.conf

make
make install



기존 소스
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

#        location / {
#            root   html;
#            index  index.html index.htm;
#        }

=> 수정


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
       location / {
            #root   html;
            #index  index.html index.htm;
            proxy_pass http://xxx.google.com
        }


실행 및 종료

nginx -c /etc/nginx/nginx.conf

killall nginx


'web' 카테고리의 다른 글

URLConnection을 이용한 파일 전송  (0) 2009.07.29
Tux 설치하기  (0) 2009.07.13
apache httpd와 light httpd의 성능 비교  (0) 2009.07.13
Restarting Tomcat, log4j error  (0) 2009.07.09
How to protect direct calling of jsp  (0) 2009.07.01
Posted by '김용환'
,