当前位置:论坛首页 > Linux面板 > 求助

nginx CI 框架 访问不了

发表在 Linux面板2019-6-18 12:14 [复制链接] 1 1003

本帖最后由 宝塔用户_unipve 于 2019-6-18 12:39 编辑

问题描述 :访问之后 页面空白,没有报错和任何提示。或者500.
伪静态配置
Zalo_ScreenShot_18_6_2019_411259.png

server
{
    listen 80;
    server_name dadasdasda;#这些一个错误域名请谅解
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/;

    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END

    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    error_page 404 /404.html;
    error_page 502 /502.html;
    #ERROR-PAGE-END

    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-54.conf;
    #PHP-INFO-END

    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/hhgh.conf;
    #REWRITE-END

    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }

    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log off;
    }

    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log off;
    }  
location ~ .php($|/)
{
        root /www/wwwroot/;
        fastcgi_pass  unix:/tmp/php-cgi-54.sock;               
        fastcgi_index index.php;
        fastcgi_read_timeout 150;
         fastcgi_split_path_info ^(.+\.php)(.*)$;
          fastcgi_param PATH_INFO $fastcgi_path_info;
           fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
           include  fastcgi_params;
}

    access_log  off;
    error_log  /www/wwwlogs/hkjh.error.log;

}

使用道具 举报 只看该作者 回复
发表于 2019-6-18 14:41:16 | 显示全部楼层
可以参考下ThinkPHP5部署在了LAMP/LNMP环境上出现白屏时的排查解决方法 https://www.kancloud.cn/manual/thinkphp5/336757
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

企业版年付运维跟进群

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急问题处理

论坛响应时间:10分钟

问题处理方式:1对1处理(优先)

工作时间:白班:9:00 - 18:00

工作时间:晚班:18:00 - 24:00

立即付费处理
快速回复 返回顶部 返回列表