web-dev-qa-db-ja.com

nginxとphp5-fpmが機能しない

何かの前にどこでも検索してすべてをテストしましたが、まだ動作していませんブラウザでlocalhostを開いたときにphp5-fpmとnginxをインストールすると、このページが表示されます:

Nginxのへようこそ!

そのため、ngginxで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ファイルを実行する代わりにダウンロードすることです

3
k961

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:Permission denied)

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の行のインデントが他の行と異なるのはなぜですか?適切な構成に影響することに注意してくださいが、これにより、それらが不注意に貼り付けられたような印象が残ります。使用した指示へのリンクを提供してください。

4
LiveWireBT

あなたは試すことができます EasyEngine これは単一のコマンドでウェブサーバーをセットアップできます

Docs/wiki: https://github.com/rtCamp/easyengine/wiki

設定方法: http://www.unixmen.com/easyengine-auto-installer-script-managing-wordpress-nginx-websites-ubuntu-debian/

0
Mitesh Shah