반응형
nginx와 php-fpm 연동
vi /etc/nginx/conf.d/default.conf
#수정할 부분은 파일에서 찾아서 수정
location ~ \.php$ {
root /usr/share/nginx/html;
#same as php-fpm config listen
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
서비스 재시작
service nginx restart
작동확인
echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/info.php
브라우저 확인
http://[HOST]/info.php
반응형
'dev > linux' 카테고리의 다른 글
install zend guard loader (0) | 2016.02.07 |
---|---|
[centos] Install MariaDB (0) | 2016.02.07 |
[centos] php fpm configuration (0) | 2016.02.07 |
[centos] install php 5.3 (0) | 2016.02.07 |
[centos] install nginx (0) | 2016.02.07 |