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 = 0660www.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

あなたが試すことができますイージーエンジン1つのコマンドでWebサーバーをセットアップできる

ドキュメント/ウィキ:https://github.com/rtCamp/easyengine/wiki

セットアップ方法:http://www.unixmen.com/easyengine-auto-installer-script-managing-wordpress-nginx-websites-ubuntu-debian/

関連情報