i wanted to increase my max. upload file size and install cURL to php5-fpm today. I have installed a LAMP stack on my Ubuntu 14.04. But the changes doesn't take any effect after reloading/restarting php5-fpm and nginx..
Now i have removed everything with php from the server to test if nginx is using these services but it's still running.. On my nginx i use following configuration:
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
I don#t know what to do now no changes take any effect.. Thanks for your help!!