##nginx와 PHP의 관계 [root@web01 ~]# cat /etc/nginx/conf.d/02-blog.conf server { listen 80; server_name blog.oldboy.com; access_log /var/log/nginx/access_blog.log main; root /usr/share/nginx/html/blog; location / { index index.php index.html index.htm; } location ~* \.(php|php5)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;..