nginx配置虚拟主机

来源:互联网 发布:网络电视32寸多少钱 编辑:程序博客网 时间:2024/06/05 06:23
server {
listen 80;
server_name shopcz.com;
location / {
root D:\WWW\shopcz;
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME D:\WWW\shopcz\$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
0 0
原创粉丝点击