PHP-FPM 소켓 권한

PHP-FPM 소켓 권한

우선 여기저기 찾아보고 다 테스트해봤는데 여전히 안되네요. 나는 설치 php5-fpm하고 nginx. 브라우저에서 열면 localhost 다음 페이지가 표시됩니다.

Welcome to nginx!

이제 nginx로 php5-fpm을 구성하는 중입니다 /etc/php5/fpm/pool.d/www.conf.

  user = www-data
  group = www-data
  listen = /var/run/php5-fpm.sock
  listen.owner = www-data
  listen.group = www-data
  pm = dynamic
  pm.max_children = 5
  pm.start_servers = 2
  pm.min_spare_servers = 1
  pm.max_spare_servers = 3
  chdir = /

다른 모든 줄은 주석 처리되어 있으며 이는 nginx conf입니다.

  upstream php {
        server unix:/var/run/php5-fpm.socket;
  }

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /usr/share/nginx/html;
index index.html index.htm index.php;

# Make site accessible from http://localhost/
server_name localhost;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ =404;
    # Uncomment to enable naxsi on this location
    # include /etc/nginx/naxsi.rules
}

# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
#   proxy_pass http://127.0.0.1:8080;    
#}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
#   root /usr/share/nginx/html;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri =404;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;

}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#   allow all;
#}
}

문제는 .php파일을 실행하려고 할 때 파일을 실행하는 대신 파일을 nginx다운로드한다는 것입니다 ..php

답변1

PHP-FPM 소켓 권한

소켓에 적절한 권한이 있는지 확인하세요.

$ ll /var/run/php5-fpm.sock
srw-rw---- 1 www-data www-data 0 Aug  6 14:16 /var/run/php5-fpm.sock=

출력이 다른 경우 아마도 추가 listen.mode = 0660하십시오 .www.conf

아마도 관련이 있을 수 있습니다:nginx 오류로 인해 php5-fpm.sock에 연결하지 못했습니다(13: 권한이 거부됨).

nginx 구성

  1. 여기가 정말 파일이 있는 곳인가요?

    root /usr/share/nginx/html;
    index index.html index.htm index.php;
    
  2. 이 블록은 무엇을 하도록 되어 있나요?

      upstream php {
            server unix:/var/run/php5-fpm.socket;
      }
    
  3. try_files $uri =404;블록 에서 제거하는 것이 좋습니다 location ~ \.php$.

  4. 2와 3의 줄 들여쓰기가 나머지 부분과 다른 이유는 무엇입니까? 이는 올바른 구성에 영향을 주지만 부주의하게 붙여넣었다는 인상을 남깁니다. 사용한 지침에 대한 링크를 제공해 주세요.

답변2

당신은 시도 할 수 있습니다이지엔진단일 명령으로 웹 서버를 설정할 수 있습니다.

문서/위키:https://github.com/rtCamp/easyengine/wiki

설정 방법:http://www.unixmen.com/easyengine-auto-installer-script-managing-wordpress-nginx-websites-ubuntu-debian/

관련 정보