安装Laravel Valet后,我可以在Nginx中拥有非Laravel站点吗?

时间:2018-11-30 05:03:16

标签: nginx laravel-valet

我已经安装了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

0 个答案:

没有答案