Eu criei um VPS usando o Nginx e tentei exibir as informações do php com: <?php phpinfo(); ?>
.
Em vez disso, o navegador me pede para baixar o arquivo php e também não é analisado.
Isso acontece apenas nos sites da VPS localizados em /var/www/
. O mesmo arquivo php localizado no padrão /usr/share/nginx/html
(acessado pelo navegador por ip) aparece OK (e é exibido no navegador em vez de pedir para ser baixado).
Aqui estão meus arquivos de configuração:
virtual.conf
#
# A virtual host using mix of IP-, name-, and port-based configuration
#
server {
listen 80;
# listen *:80;
server_name website.com www.website.com;
location / {
root /var/www/website.com/public_html/;
index index.php index.html index.htm;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /var/www/website.com/public_html/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
default.conf
#
# The default server
#
server {
listen 80;
server_name 100.00.000.000;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/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$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Obrigado a todos!