"Nginx"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
잔글
잔글
144번째 줄: 144번째 줄:
 
|-
 
|-
 
| style="background-color: rgb(241, 241, 241);" |  
 
| style="background-color: rgb(241, 241, 241);" |  
&nbsp; &nbsp; include /etc/nginx/conf.d/*.conf;<br/>&nbsp; &nbsp; include /etc/nginx/sites-enabled/*; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #--- 이 라인을 추가 합니다.
+
&nbsp; &nbsp; include /etc/nginx/conf.d/*.conf;<br/>&nbsp; &nbsp; include /etc/nginx/sites-enabled/*.conf; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #--- 이 라인을 추가 합니다.
  
 +
|}
  
 +
 +
 +
vi /etc/nginx/conf.d/default.conf
 +
 +
{| cellspacing="1" cellpadding="1" style="line-height: 20.7999992370605px; color: rgb(0, 0, 0); font-family: sans-serif; width: 771px;"
 +
|-
 +
| style="background-color: rgb(241, 241, 241);" |
 +
&nbsp; &nbsp;server_name &nbsp;nouse.ossbiz.co.kr;
  
 
|}
 
|}
152번째 줄: 161번째 줄:
  
  
vi /etc/nginx/sites-available/mysite
+
vi /etc/nginx/sites-available/ossnode101.conf
  
 
{| cellspacing="1" cellpadding="1" style="line-height: 20.7999992370605px; color: rgb(0, 0, 0); font-family: sans-serif; width: 771px;"
 
{| cellspacing="1" cellpadding="1" style="line-height: 20.7999992370605px; color: rgb(0, 0, 0); font-family: sans-serif; width: 771px;"
162번째 줄: 171번째 줄:
  
 
&nbsp; &nbsp; location ~ \.php$ {<br/>&nbsp; &nbsp; &nbsp; &nbsp; try_files $uri =404;<br/>&nbsp; &nbsp; &nbsp; &nbsp; include /etc/nginx/fastcgi_params;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_pass &nbsp;127.0.0.1:9000;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_index index.php;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_param SCRIPT_FILENAME /srv/www/mysite/public_html$fastcgi_script_name;<br/>&nbsp; &nbsp; }<br/>}
 
&nbsp; &nbsp; location ~ \.php$ {<br/>&nbsp; &nbsp; &nbsp; &nbsp; try_files $uri =404;<br/>&nbsp; &nbsp; &nbsp; &nbsp; include /etc/nginx/fastcgi_params;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_pass &nbsp;127.0.0.1:9000;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_index index.php;<br/>&nbsp; &nbsp; &nbsp; &nbsp; fastcgi_param SCRIPT_FILENAME /srv/www/mysite/public_html$fastcgi_script_name;<br/>&nbsp; &nbsp; }<br/>}
 
 
  
 
|}
 
|}
174번째 줄: 181번째 줄:
 
|-
 
|-
 
| style="background-color: rgb(241, 241, 241);" |  
 
| style="background-color: rgb(241, 241, 241);" |  
&nbsp; &nbsp; ln -s /etc/nginx/sites-available/mysite /etc/nginx/sites-enabled/mysite
+
&nbsp; &nbsp; ln -s /etc/nginx/sites-available/<span style="line-height: 20.7999992370605px;">ossnode101.conf</span> /etc/nginx/sites-enabled/<span style="line-height: 20.7999992370605px;">ossnode101.conf</span>
  
 +
|}
  
  
|}
 
  
 +
vi&nbsp;/srv/www/mysite/public_html/phpinfo.php
  
 +
{| cellspacing="1" cellpadding="1" style="line-height: 20.7999992370605px; color: rgb(0, 0, 0); font-family: sans-serif; width: 771px;"
 +
|-
 +
| style="background-color: rgb(241, 241, 241);" |
 +
&nbsp; aaa
  
 +
|}
  
  
  
 +
nginx를 재기동 합니다.
  
<span style="line-height: 20.7999992370605px; background-color: rgb(241, 241, 241);">mkdir -p /etc/nginx/sites-enabled</span>
+
{| cellspacing="1" cellpadding="1" style="line-height: 20.7999992370605px; color: rgb(0, 0, 0); font-family: sans-serif; width: 771px;"
 +
|-
 +
| style="background-color: rgb(241, 241, 241);" |
 +
service php-fpm restart
  
 +
&nbsp;service nginx restart
  
 +
|}
  
yum install php php-*
+
<span style="color: rgb(0, 0, 0); font-family: sans-serif; line-height: 19.0499992370605px;">브라우저에서&nbsp;</span>[http://ossnode101.ossbiz.co.kr/ http://ossnode101.ossbiz.co.kr:80/phpinfo.php]<span style="color: rgb(0, 0, 0); font-family: sans-serif; line-height: 19.0499992370605px;">&nbsp;으로 접속 합니다.</span>
  
 
== Java 사용 설정 ==
 
== Java 사용 설정 ==

2014년 9월 18일 (목) 16:00 판

비동기 이벤트 기반의 Web Server인 nginx를 정리 합니다.

nginx 개요

CentOS 6.5에서 설치

Nginx 저장소 생성

vi /etc/yum.repos.d/nginx.repo

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1


Nginx 설치

yum install nginx


Nginx 설정 파일

  • /etc/nginx/ : 설정 파일 폴더
    • nginx.conf
    • conf.d/
  • /var/log/nginx/ : 로그 폴더
    • access.log
    • error.log
  • /usr/share/nginx/html/ : Document Root 폴더


기본 설정

vi /etc/nginx/nginx.conf

worker_processes 1;                #--- core 수만큼 지정

gzip on;


vi /etc/nginx/conf.d/default.conf

server_name  ossnode101.ossbiz.co.kr;


방화벽 설정 및 서비스 기동

setup                                 #--- 방화벽에서 80/tcp port를 오픈 합니다.

service nginx restart


브라우저에서 http://ossnode101.ossbiz.co.kr:80/ 으로 접속 합니다.

File:Nginx init.png

PHP 사용 설정

PHP를 설치 합니다.

yum install php php-*

mkdir /var/lib/php/upload


vi /etc/php.ini

date.timezone = Asia/Seoul
upload_tmp_dir    = "/var/lib/php/upload"
session.save_path = "/var/lib/php/session"


PHP-FPM 서비스를 실행 합니다

service php-fpm restart


Site를 설정 합니다.

mkdir -p /srv/www/mysite/public_html
mkdir -p /srv/www/mysite/logs
chown -R apache:apache /srv/www/mysite

mkdir /etc/nginx/sites-available
mkdir /etc/nginx/sites-enabled


vi /etc/nginx/nginx.conf

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*.conf;               #--- 이 라인을 추가 합니다.


vi /etc/nginx/conf.d/default.conf

   server_name  nouse.ossbiz.co.kr;


vi /etc/nginx/sites-available/ossnode101.conf

server {
    server_name ossnode101.ossbiz.co.kr;
    access_log /srv/www/mysite/logs/access.log;
    error_log /srv/www/mysite/logs/error.log;
    root /srv/www/mysite/public_html;

    location / {
        index index.html index.htm index.php;
    }

    location ~ \.php$ {
        try_files $uri =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /srv/www/mysite/public_html$fastcgi_script_name;
    }
}


sites-enabled에 mysite를 추가 합니다.

    ln -s /etc/nginx/sites-available/ossnode101.conf /etc/nginx/sites-enabled/ossnode101.conf


vi /srv/www/mysite/public_html/phpinfo.php

  aaa


nginx를 재기동 합니다.

service php-fpm restart

 service nginx restart

브라우저에서 http://ossnode101.ossbiz.co.kr:80/phpinfo.php 으로 접속 합니다.

Java 사용 설정

참고 문헌