Sziasztok. Van egy VPS-em amin Ubuntu 14.04 fut, felraktam rá az nginx-et php5-fpm-el beállítottam elméletileg a php processt de amint megpróbálom nyitni az index.php-t amiben csak phpinfo(); van írva csak egy fehér lapot látok.
Így néz ki az nginx konfig fájlom:
server {
listen 80;
server_name localhost;
root /var/www;
index index.php index.html;
location / {
try_files $uri $uri/ =404;
}
location ~ \\.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
fastcgi_split_path_info ^(.+\\.php)(.*)$;
fastcgi_hide_header X-Powered-By;
}
}
Mindent megpróbáltam már mindenhol utánanéztem de nem sikerült megoldani. Előre is köszönöm!