• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

I don't know why it can't be installed Blank Page

vaeal

jesune
I am a user from China. I am building a pagoda with a website panel provided by China,I used MySQL 5.7,php7.4editionAccording to the document, I have opened PHP extensions and file permissions, but the files are missing when adding nginx rules. I'm not very good at using these things. I hope someone with good intentions can help me to have a look!
Grinder nginx configuration
Code:
server
{
    listen 80;
    server_name web.com ;
index
index.htm default.php default.htm default.html;
    root /www/wwwroot/web;

  #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-74.conf;
    #PHP-INFO-END

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

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

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

    #禁止在证书验证目录放入敏感文件
    if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
        return 403;
    }

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

    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log /dev/null;
        access_log /dev/null;
    }
    access_log  /www/wwwlogs/web.com.log;
    error_log  /www/wwwlogs/web.com.error.log;
}
When I add the official nginx file, an error will occur
Code:
ERROR:
nginx: [emerg] open() "/www/server/panel/vhost/rewrite/apeay.com.conf" failed (2: No such file or directory) in /www/server/panel/vhost/nginx/apepic.com.conf:23
nginx: configuration file /www/server/nginx/conf/nginx.conf test failed
I really don't know what to do. Please give me some ideas. Thank you.
 
Back
Top