CentOS 7의 Nginx에서는 Wordpress에 대한 쓰기 권한이 없습니다.

CentOS 7의 Nginx에서는 Wordpress에 대한 쓰기 권한이 없습니다.

Nginx가 실행 중인 CentOS 7 시스템이 있고 사용자는 "nginx"(CentOS의 기본 시스템)입니다. 완벽하게 작동하는 Wordpress를 설치했으며 wordpress 폴더 및 하위 폴더(775)에서 nginx 사용자에게 쓰기 권한을 부여했지만 여전히 권한 오류가 발생합니다.

wp-content/uploads/2015/05 디렉토리를 생성할 수 없습니다.

어떤 사용자가 nginx 작업자 프로세스를 실행하고 있는지 다시 확인했는데 nginx입니다.

내가 놓친 사소한 일임에 틀림 없습니다. 누군가 나를 도와줄 수 있나요?

편집하다:

/var/log/nginx/error.log에서 이것을 발견했습니다.

2015/05/03 20:42:41 [오류] 23652#0: *1 FastCGI가 stderr로 전송됨: "기본 스크립트를 열 수 없습니다: /usr/share/nginx/html/index.php(해당 파일 또는 디렉터리가 없음) " 업스트림에서 응답 헤더를 읽는 동안 클라이언트: XXX.XXX.XXX.A, 서버: XXX.XXX.XXX.B, 요청: "GET / HTTP/1.1", 업스트림: "fastcgi://unix:/var/ 실행/php-fpm/php-fpm.sock:", 호스트: "XXX.XXX.XXX.B"

2015/05/03 20:44:18 [오류] 23652#0: *3 FastCGI가 stderr로 전송됨: "기본 스크립트를 열 수 없습니다: /usr/share/nginx/html/wp-admin/admin-ajax.php( 해당 파일 또는 디렉터리 없음)" 업스트림에서 응답 헤더를 읽는 동안 클라이언트: XXX.XXX.XXX.A, 서버: XXX.XXX.XXX.B, 요청: "POST /wp-admin/admin-ajax.php HTTP/ 1.1", 업스트림: "fastcgi://unix:/var/run/php-fpm/php-fpm.sock:", 호스트: "XXX.XXX.XXX.B", 리퍼러: "http://XXX.XXX.XXX.B/wp-admin/"

2015/05/03 21:02:54 [emerg] 23803#0: getpwnam("http")가 /etc/nginx/nginx.conf:6에서 실패했습니다.

편집 2

$ ps -elf|grep nginx
1 S root      2045     1  0  80   0 - 27393 sigsus 15:46 ?        00:00:00 nginx: master process /usr/sbin/nginx
5 S nginx     2049  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2050  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2051  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2052  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process

서버 구성 파일은 다음과 같습니다.

server {
    listen       80;
    server_name  XXX.XXX.XXX.B;

    location / {
        root   /var/www/wordpress;
        index index.php index.html index.htm;
        try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    error_page 404 /404.html;
    location = /404.html {
        root /usr/share/nginx/html;
    }
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        root /var/www/wordpress;
        fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

nginx 구성 파일의 경우:

user  nginx;
worker_processes  4;

error_log  /var/log/nginx/error.log;

pid        /run/nginx.pid;


events {
    worker_connections  1024;
}


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

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;

    keepalive_timeout  65;

    index   index.html index.htm;

    include /etc/nginx/conf.d/*.conf;

    server {
    listen       80 default_server;
    server_name  localhost;
    root         /usr/share/nginx/html;

    include /etc/nginx/default.d/*.conf;

    location / {
    }

    error_page  404              /404.html;
    location = /40x.html {
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
    }
    }
}

답변1

중요한 것은 nginx가 실행 중인 사용자가 아니라 php-fpm이 실행 중인 사용자입니다. 결국 PHP 스크립트를 실행하는 것은 PHP-FPM이고, WordPress는 PHP-FPM 실행 사용자가 갖고 있는 권한으로 실행되고 있는 셈이다.

따라서 PHP-FPM을 실행하는 사용자가 업로드 디렉터리를 작성할 수 있는지 확인하세요.

관련 정보