Eu corri apt-get update
, seguido por apt-get upgrade
no meu Ubuntu (Homestead VM). Desde então, não consigo mais acessar meu aplicativo PHP.
Eu tentei acessar um arquivo txt do meu aplicativo e isso funciona (http //. / test.txt), mas ao tentar acessar um arquivo php eu recebo uma tela em branco. O conteúdo do arquivo php de teste é
<?php
echo phpinfo();
Não tenho muita certeza de onde procurar, pois não encontro nenhuma mensagem de erro.
O que eu fiz até agora:
php -i | grep 'php.ini'
display_errors = On
display_startup_errors = On
log_errors = On
Verifique a configuração do nginx /etc/nginx/sites-enabled/mysite.conf
server {
listen 80; server_name mysite.dev;
root /home/vagrant/mysite.com/www/mysite.com/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log on;
error_log /var/log/nginx/mysite.dev-error.log error;
error_page 404 /index.php;
sendfile off;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}