Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

504 on install.php #191

Open
wind8000 opened this issue Nov 20, 2021 · 1 comment
Open

504 on install.php #191

wind8000 opened this issue Nov 20, 2021 · 1 comment

Comments

@wind8000
Copy link

Hi,

When I try to load the install.php I get a 504 error.

I use php7.4 and nginx.
My nginx config is as followed:

server {
    listen 80;
    listen [::]:80;
    root /var/www/html/x2crm;
    index  index.php;
    server_name  crm.domain.com;

    client_max_body_size 100M;

    location / {
        try_files $uri $uri/ =404;
       }

    location ~ [^/].php(/|$) {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

}

and in the log I get the following error:

[error]: *1 upstream timed out (110: Connection timed out) while reading response header from upstream, client: xxx.xxx.xxx.xxx, server: crm.domain.com, request: "GET /install.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.4-fpm.sock", host: "crm.domain.com"

Can anyone help me and tell me, where my error is? Thank you.

@sotaspaso
Copy link

I don't think the PHP version has anything to do with your issue, but notice that 7.4 is not supported.

@wind8000 wind8000 reopened this Nov 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants