nginx+php7配置虚拟主机无法访问
nginx+php7配置虚拟主机无法访问到我的laravel项目,访问页面一直报500错误码
我的配置:
server {
listen 80;
listen [::]:80;
server_name demo.cn;
root /var/www/laravel-blog/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
教程很清晰:https://laravist.com/series/d...
试查看你nginx的error.log日志文件。