Bad Gateway 502 (nginx + php7) na Digital Ocean

3

Sempre que tento publicar meu site, recebo após alguns minutos o erro 502 Bad Gateway e, no meu arquivo default-error.log , recebo esse erro várias vezes (o tamanho do arquivo era 360MB ..):

2016/02/03 14:57:28 [error] 1044#1044: *7248 connect() to unix:/var/run/php/php7.0-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client: 123.456.78.90, server: default, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.0-fpm.sock:", host: "domain.com"

Configuração do servidor

  • SO: Ubuntu 14.04.3 LTS (GNU / Linux 3.13.0-71-genérico x86_64)
  • Versão do Nginx: 1.9.10
  • PHP Versão PHP 7.0.2-4 + deb.sury.org ~ confiável + 1 (cli) (NTS)
  • (Meu servidor está hospedado no Digital Ocean e tem 4 GB de RAM).

nginx.conf :

server {
    listen 80 default_server;
    server_name default;
    root /home/forge/default/public;

    # FORGE SSL (DO NOT REMOVE!)
    include logjam_fix;
    # ssl_certificate;
    # ssl_certificate_key;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log on;
    error_log  /var/log/nginx/default-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

Existe algum dado em falta?

    
por Eliya Cohen 04.02.2016 / 18:24

1 resposta

1

Tente aumentar o número máximo de arquivos abertos:

root@server $ sysctl fs.file-max=3000000000

Editar:

Normalmente, você pode fazer com que essas alterações fiquem permanentes adicionando a linha a /etc/sysctl.conf :

fs.file-max=3000000000
    
por 04.02.2016 / 18:32