Ubuntu 14.04 から Ubuntu 16.04 への アップグレードにおいて、Nginxサイトのページがブランクになってしまった時の対応。

Nid: 795

設定ファイルに以下の記述があることを確認する。アップグレード後に"include fastcgi.conf;"の記述が必要となった。

        location ~ \.php$ {
                fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
                fastcgi_index index.php;
                include fastcgi.conf;
                include fastcgi_params;
        }