Este trabalhou para mim. Todas as páginas são retornadas com 200 agora. Eu ainda tenho probs com tarefas agendadas, mas isso deve ser feito em uma pergunta diferente.
server {
root /srv/www/xxx;
index index.php index.html index.htm;
server_name www.xxx.com;
access_log /var/log/nginx/xxx.access.log;
error_log /var/log/nginx/xxx.error.log;
location = / {
try_files $uri $uri/ /index.php;
rewrite ^/(.*)$ /index.php;
}
location / {
# Check if a file or directory index file exists, else route it to index.php.
try_files $uri $uri/ /index.php;
location = /index.php {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
}
location ~ \.php$ {
return 444;
}
}