我已经安装了Laravel Valet,用于开发Laravel项目。
现在,我想使用安装的Nginx来为其他非框架php网站运行Valet。这可能吗?
我尝试使用以下方法在/usr/local/etc/nginx/servers
中制作文件:
server {
listen 8080;
server_name localhost;
client_max_body_size 20M;
root /Users/st/Nginx;
location / {
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
}
location ~ /\.ht {
deny all;
}
}
可以使用此配置来提供HTML文件,但是php文件提供502 Bad Gateway
。