Adicione o bloco abaixo nas configurações do NGINX para habilitar o PHP: root /var/www/html; location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location /uploads { root /var/www/html/; index index.html; autoindex on; }