ウィンドウ下構成:
server {
listen 80;
server_name blog.com www.blog.com;
root E:/phpStudy/WWW/yii_blog/3 ;
location / {
インデックス index.htmlインデックス.php;
}
場所 ~* .(gif|jpg|png)$ {
有効期限は 30 日;
}
場所 ~ .php$ {
fastcgi_pass localhost:9000;
fastcgi_param SC RIPT_FILENAME
$document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Linux下構成:
サーバー{server{
listen 80;
root /home/user/website/www;
リッスン 80;🎜🎜root /home/user/website/www;🎜 index index.php index.html index.htm; index index.php index.html index.htm;
server_name localhost;
location / {
server_name localhost;🎜🎜 location / {🎜 try_files $uri $uri/ /index.php; try_files $uri $uri/ /index.php;
}
}🎜 location ~ .php$ { location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;🎜🎜 🎜 fastcgi_param SCRIPT_FILENAME /home/user/website/www$fastcgi_script_name;
含める /etc/nginx/fastcgi_params; include /etc/nginx/fastcgi_params;
}
}
}
}
バージョン通知: 本文は博主原文、未博主允许不得转莱。
以上、側面の内容を含む Nginx 構成仮想マシンについて説明しましたが、PHP 教則に関心のある友人の助けになることを望みます。