• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

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

Corezeek

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