Skip to content

504 on install.php #191

@wind8000

Description

@wind8000

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions