Назад | Перейти на главную страницу

Nginx + PHP-FPM на Centos 6.5 дает мне 502 Bad Gateway (ошибка fpm: невозможно прочитать, что говорит ребенок: плохой дескриптор файла)

Я устанавливаю стандартный стек LEMP. Моя текущая настройка дает мне следующую ошибку:

502 Неверный шлюз

Вот что сейчас установлено на моем сервере:

Вот конфигурации, которые я создал / обновил до сих пор, может кто-нибудь взглянуть на следующее и увидеть, где может быть ошибка? Я уже проверил свои логи, там ничего нет (http://i.imgur.com/iRq3ksb.png). И я увидел в /var/log/php-fpm/error.log файл.

sidenote: и nginx, и php-fpm были настроены для работы под локальной учетной записью с именем www-data и следующие папки выходят на сервер

nginx.conf глобальная конфигурация nginx

user                    www-data;
worker_processes        6;
worker_rlimit_nofile    100000;
error_log               /var/log/nginx/error.log crit;
pid                     /var/run/nginx.pid;

events {
    worker_connections 2048;
    use epoll;
    multi_accept on;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    # cache informations about FDs, frequently accessed files can boost performance
    open_file_cache max=200000 inactive=20s; 
    open_file_cache_valid 30s; 
    open_file_cache_min_uses 2;
    open_file_cache_errors on;
    
    # to boost IO on HDD we can disable access logs
    access_log off;

    # copies data between one FD and other from within the kernel
    # faster then read() + write()
    sendfile on;

    # send headers in one peace, its better then sending them one by one 
    tcp_nopush on;

    # don't buffer data sent, good for small data bursts in real time
    tcp_nodelay on;

    # server will close connection after this time
    keepalive_timeout 60;

    # number of requests client can make over keep-alive -- for testing
    keepalive_requests 100000;

    # allow the server to close connection on non responding client, this will free up memory
    reset_timedout_connection on;

    # request timed out -- default 60
    client_body_timeout 60;

    # if client stop responding, free up memory -- default 60
    send_timeout 60;

    # reduce the data that needs to be sent over network
    gzip on;
    gzip_min_length 10240;
    gzip_proxied expired no-cache no-store private auth;
    gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml;
    gzip_disable "MSIE [1-6]\.";

    # Load vHosts
    include /etc/nginx/conf.d/*.conf;
}

conf.d / www.domain.com.conf моя запись vhost

## Nginx php-fpm Upstream
upstream wwwdomaincom {
    server unix:/var/run/php-fcgi-www-data.sock;
}

## Global Config
client_max_body_size            10M;
server_names_hash_bucket_size   64;

## Web Server Config
server
{
    ## Server Info
    listen 80;
    server_name domain.com *.domain.com;
    root /home/www-data/public_html;
    index index.html index.php;
    
    ## Error log
    error_log /home/www-data/logs/nginx-errors.log;

    ## DocumentRoot setup
    location / {
        try_files $uri $uri/ @handler;
        expires 30d;
    }
    
    ## These locations would be hidden by .htaccess normally
    #location /app/                       { deny all; }
    
    ## Disable .htaccess and other hidden files
    location  /. {
        return 404;
    }
 
    ## Magento uses a common front handler
    location @handler {
        rewrite / /index.php;
    }
 
    ## Forward paths like /js/index.php/x.js to relevant handler
    location ~ .php/ {
        rewrite ^(.*.php)/ $1 last;
    }
 
    ## Execute PHP scripts
    location ~ \.php$ {
        try_files $uri =404;
        expires        off;
        fastcgi_read_timeout 900;
        fastcgi_pass   wwwdomaincom;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
    
    ## GZip Compression
    gzip on;
    gzip_comp_level 8;
    gzip_min_length 1000;
    gzip_proxied any;
    gzip_types text/plain application/xml text/css text/js application/x-javascript;
}

/etc/php-fpm.d/www-data.conf моя конфигурация пула php-fpm

## Nginx php-fpm Upstream
upstream wwwdomaincom {
    server unix:/var/run/php-fcgi-www-data.sock;
}

## Global Config
client_max_body_size            10M;
server_names_hash_bucket_size   64;

## Web Server Config
server
{
    ## Server Info
    listen 80;
    server_name domain.com *.domain.com;
    root /home/www-data/public_html;
    index index.html index.php;
    
    ## Error log
    error_log /home/www-data/logs/nginx-errors.log;

    ## DocumentRoot setup
    location / {
        try_files $uri $uri/ @handler;
        expires 30d;
    }
    
    ## These locations would be hidden by .htaccess normally
    #location /app/                       { deny all; }
    
    ## Disable .htaccess and other hidden files
    location  /. {
        return 404;
    }
 
    ## Magento uses a common front handler
    location @handler {
        rewrite / /index.php;
    }
 
    ## Forward paths like /js/index.php/x.js to relevant handler
    location ~ .php/ {
        rewrite ^(.*.php)/ $1 last;
    }
 
    ## Execute PHP scripts
    location ~ \.php$ {
        try_files $uri =404;
        expires        off;
        fastcgi_read_timeout 900;
        fastcgi_pass   wwwdomaincom;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
    
    ## GZip Compression
    gzip on;
    gzip_comp_level 8;
    gzip_min_length 1000;
    gzip_proxied any;
    gzip_types text/plain application/xml text/css text/js application/x-javascript;
}

У меня есть файл в /home/www-data/public_html/index.php с кодом <?php phpinfo(); ?> (файл загружен как пользователь www-data).

nginx tmp dir недоступен для записи пользователем nginx работает как, в вашем случае, "www-data"

/ var / lib / nginx / tmp / fastcgi / 2/00/0000000002 "не удалось (13: в доступе отказано)

попробуйте "chown -cR www-data. / var / lib / nginx"