Window下配置:
서버 {
듣기 80;
server_name blog.com www.blog.com;
루트 E:/phpStudy/WWW/yii_blog/3 ;
위치 / {
index index.html index.php;
}
위치 ~* .(gif|jpg|png)$ {
30일 만료;
}
위치 ~ .php$ {
fastcgi_pass localhost:9000;
fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name;
포함 fastcgi_params;
}
}
Linux 다운로드配置:
server{
listen 80;
root /home/user/website/www;
index index.php index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ /index.php;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/user/website/www$fastcgi_script_name$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
}
저작권 안내 : 이 글은 해당 블로거의 원본 글이므로, 블로거의 허락 없이 복제할 수 없습니다.
위의 내용을 포함하여 Nginx 구성 가상 머신을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.