오늘: 9|어제: 18|전체: 234,157|회원: 118 (+0)|문서: 56,040 (+0)|댓글: 8,019 (+0)|첨부파일: 1,389 (+0)


조회 수 2153 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

+ - Up Down Comment Print
?

단축키

Prev이전 문서

Next다음 문서

+ - Up Down Comment Print
Extra Form

Getting started

Add necessary repositories:

CentOS 5.x i386:

sudo rpm -ivh http://mirror.yandex.ru/epel/5/i386/epel-release-5-4.noarch.rpm
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm

CentOS 5.x x86_64:
sudo rpm -ivh http://mirror.yandex.ru/epel/5/x86_64/epel-release-5-4.noarch.rpm
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm

CentOS 6.x i386:
sudo rpm -ivh http://mirror.yandex.ru/epel/6/i386/epel-release-6-8.noarch.rpm
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

CentOS 6.x x86_64:
sudo rpm -ivh http://mirror.yandex.ru/epel/6/x86_64/epel-release-6-8.noarch.rpm
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

Create?/etc/yum.repos.d/nginx.repo?file and add:

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

Installing Nginx, PHP 5.3.10 and PHP-FPM

To install Nginx, PHP 5.3.10 and PHP-FPM run:

yum install nginx php php-fpm php-common

Install some PHP modules: PEAR (php-pear), PDO (php-pdo), MySQL (php-mysql), Memcache (php-pecl-memcache), Memcached (php-pecl-memcached), GD (php-gd), XML (php-xml), MBString (php-mbstring), MCrypt (php-mcrypt)

yum --enablerepo=remi install php-pecl-apc php-cli php-pear php-pdo php-mysql php-pecl-mongo php-sqlite php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml

Enable Nginx and PHP-FPM. You can do it this way:

/etc/init.d/nginx start
/etc/init.d/php-fpm start

or this way:

service nginx start
service php-fpm start

To start Nginx on boot:

chkconfig --add nginx
chkconfig --levels 235 nginx on

To start PHP-FPM on boot:

chkconfig --add php-fpm
chkconfig --levels 235 php-fpm on

Configuring Nginx

Creating folders for our website and logs:

mkdir -p /home/web/www/howtounix.info/public_html
mkdir /home/web/www/howtounix.info/logs
chown -R nginx:nginx /home/web/www/howtounix.info

Create folders for virtual hosts:

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

Add to?/etc/nginx/nginx.conf?file after "include /etc/nginx/conf.d/*.conf":

include /etc/nginx/sites-enabled/*;

Add virtual host. In?/etc/nginx/sites-available/?directory create the file named as your website. In our case it's howtounix.info, add:

server {
    server_name howtounix.info;
    access_log /home/web/www/howtounix.info/logs/access.log;
    error_log /home/web/www/howtounix.info/logs/error.log;
    root /home/web/www/howtounix.info/public_html;

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

    location ~ \.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /home/web/www/howtounix.info/public_html$fastcgi_script_name;
    }
}

Create a symlink to the virtual host and restart Nginx:

cd /etc/nginx/sites-enabled/
ln -s /etc/nginx/sites-available/howtounix.info

service nginx restart

Add the virtual host to?/etc/host?file:

127.0.0.1               localhost howtounix.info
It will be the same pattern for an external IP address.

Check on Nginx and PHP-FPM. Create?index.php?file in?/home/web/www/howtounix.info/public_html/?directory and add:

<?php 
    phpinfo();
?>

Navigate your website in a browser to check how it works.


List of Articles
글쓴이 분류 제목 조회 수
Luatic™ XpressEngine .htaccess 파일 관련 팁(웹 사이트 퍼포먼스 향상 및 트래픽 절감 효과) file 2280
Luatic™ Apache .htaccess로 파일 업로드 방지하기 file 1798
루아틱 Apache Apache 2 prefork 와 worker 차이 23702
Omega3 Apache Apache 에서 최대 접속자 수 늘리기 1903
루아틱 Apache Apache의 rewrite Module 11774
Luatic™ ASP ASP.NET 란 file 2242
루아틱 Etc Byte(바이트) 와 bit(비트)의 차이 1 19783
Omega3 Linux CentOS 5.7& 6.2 에서 YUM으로 NGINX와 PHP5.3.10, PHP-FPM 설치하기 2153
Luatic™ Linux CentOS Yum 사용법 1 1748
Omega3 Linux centos에서 mysql 5.5로 업그레이드 4 2009
YJSoft™ XpressEngine Cloudflare Railgun 활성화 후 로그인이 몇초만에 풀린다면 3 1119
Luatic™ Apache cPanel MIME Types에 추가할 수 있는 것들 1852
Luatic™ PHP cPanel 에서 줌라(Joomra) 3.0 설치 후 한글 언어팩 설치방법. file 2167
YJSoft Etc DNSever 연결하기 2 file 2136
YJSoft™ PHP FastCGI 환경에서 PHP Digest 인증 사용 1 715
루아틱 Etc ftp에서 passive와 active 모드의 차이? 2 22601
YJSoft Etc Godaddy 도메인 루아틱에 연결하기 1 file 880
루아틱 Etc html 색상표 18479
Luatic™ WebServer HTTP Status Code 1169
루아틱 PHP KimsQ RB로 홈페이지+모바일홈피 5분만에 만들기 1 15624
Board Pagination ‹ Prev 1 2 3 4 5 6 Next ›
/ 6

처음