오늘: 1|어제: 24|전체: 234,201|회원: 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™ MySQL XE에서 MariaDB 사용하는 방법 5 file 3064
Luatic™ XpressEngine XE Admin help - 설치부터 관리까지 3 file 3052
CharmingIrene PHP PHP 강좌 1편 - 기초 file 2997
YJSoft PHP 함수() or die("")? 2 2986
Luatic™ XpressEngine ssh 쉘상에서 XE 간편하게 올리기 file 2919
CharmingIrene PHP PHP 강좌 3편 - 연산자 2908
YJSoft Apache php 실행 확장자 변경 2663
Luatic™ Windows 크롬에서 DNS 캐시 초기화하기 2514
Luatic™ Linux shell 상의 nano 에디터 사용법 2418
Luatic™ KimsQ RB KimsQ 사용시 보안을 위해 로봇 접근 제한 robot.txt 내용 5 file 2398
YJSoft™ Etc 안드로이드 시패널 관리 앱 6 file 2350
Luatic™ XpressEngine nginx에서 짧은 주소가 동작하지 않는 경우 해결 2 file 2308
Luatic™ MySQL 자주 쓰는 MySQL 명령어 정리 2298
Luatic™ Etc 나라별 국가 코드 1 2292
Luatic™ XpressEngine .htaccess 파일 관련 팁(웹 사이트 퍼포먼스 향상 및 트래픽 절감 효과) file 2280
Luatic™ ASP ASP.NET 란 file 2242
Luatic™ PHP cPanel 에서 줌라(Joomra) 3.0 설치 후 한글 언어팩 설치방법. file 2167
YJSoft™ Windows 크롬 버전 37 업데이트 이후 영어 글자 간격이 이상하다면 2 file 2166
Omega3 Linux CentOS 5.7& 6.2 에서 YUM으로 NGINX와 PHP5.3.10, PHP-FPM 설치하기 2153
YJSoft Etc DNSever 연결하기 2 file 2136
Board Pagination ‹ Prev 1 2 3 4 5 6 Next ›
/ 6

처음