Page 1 of 1

php-fpm +nginx

Posted: Fri May 19, 2017 1:08 pm
by diegodeangelo
Hey,
I have the latest Vesta installed on Ubuntu 16.04.
I'm using php 5.6 in my server and I want run php 7.1 for roundcube and phpmyadmin.

I edit /etc/nginx/conf.d/webmail.inc according below:

Code: Select all

location /webmail {
    alias /var/lib/roundcube/;

    location ~ /(config|temp|logs) {
        return 404;
    }

    location ~ ^/webmail/(.*\.php)$ {
        alias /var/lib/roundcube/$1;
        #fastcgi_pass 127.0.0.1:9000;
        fastcgi_pass unix:/run/php/php7.1-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $request_filename;
    }
}
But, when I run

Code: Select all

phpinfo()
in the server, still show php 5.6. I try search for conflicts in configuration files, but I don't know much about nginx.

Can you help me? Please!

Re: php-fpm +nginx

Posted: Fri May 19, 2017 3:39 pm
by Phogo
Did you restart PHP and Nginx?

Re: php-fpm +nginx

Posted: Fri May 19, 2017 5:05 pm
by diegodeangelo
Phogo wrote:Did you restart PHP and Nginx?
Yes! But didn't work!