For some reason, any php code is commented on the ubuntu + nginx server. But phpmyadmin works. Wrote primitive
phpinfo(); nginx conf
server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; root /var/www/site.ru; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name site.ru; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } #error_page 404 /404.html; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini # With php5-cgi alone: #fastcgi_pass 127.0.0.1:9000; # With php5-fpm: fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; } }