ubutun 安装php7.1x-12869490
server {listen 80;
server_namelocalhost xxxxxx.com ;
location / {
root /home/www/test;
index index.html index.htm index.php;
#try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
root /home/www/test;
fastcgi_pass 127.0.0.1:9000; #这里是重点额
fastcgi_indexindex.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
页:
[1]