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 "" > /usr/share/nginx/html/info.php 브라우저 확인http://[H..