주워들은것들.. 2013/09/18 01:10
Wordpress 를 사용하는 분 덕에 간단한 삽질...
PHP-FPM 과 NGINX 설치는 제끼고
핵심인 Nginx configuration 만 참조 바람.
아래 참고 사이트를 이용하면 보다 다양한 내용을 자세하게 설명해줌.
끗.!
참고 : rtCamp ( http://rtcamp.com/wordpress-nginx/tutorials/ )
PHP-FPM 과 NGINX 설치는 제끼고
핵심인 Nginx configuration 만 참조 바람.
server {
server_name example.com www.example.com;
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
root /var/www/example.com/htdocs;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
server_name example.com www.example.com;
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
root /var/www/example.com/htdocs;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
아래 참고 사이트를 이용하면 보다 다양한 내용을 자세하게 설명해줌.
끗.!
참고 : rtCamp ( http://rtcamp.com/wordpress-nginx/tutorials/ )
이 글에는 트랙백을 보낼 수 없습니다
0