I have a strange problem with Ansible that I use to install / update / manage my webservers.
I have an installation script that is supposed to make sure that I always have the latest PHP5 module in my Debian 6 / Apache 2 system:
- name: install apache2 and php5
action: apt pkg=$item state=latest
with_items:
- apache2
- php5
- libapache2-mod-php5
- php5-curl
phpinfo says the file location is /etc/php5/fpm/php.ini.
Additional .ini files parsed /etc/php5/fpm/conf.d/curl.ini, /etc/php5/fpm/conf.d/gd.ini, /etc/php5/fpm/conf.d/mcrypt.ini, /etc/php5/fpm/conf.d/mysql.ini, /etc/php5/fpm/conf.d/mysqli.ini, /etc/php5/fpm/conf.d/pdo.ini, /etc/php5/fpm/conf.d/pdo_mysql.ini, /etc/php5/fpm/conf.d/xcache.ini
Looking in them none of them have anything that deal
Using PHP5-FPM With Apache2 On OpenSUSE 12.3
This tutorial shows how you can install an Apache2 webserver on an OpenSUSE 12.3 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On Ubuntu 12.10
This tutorial shows how you can install an Apache2 webserver on an
Ubuntu 12.10 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On OpenSUSE 12.2
This tutorial shows how you can install an Apache2 webserver on an OpenSUSE 12.2 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On CentOS 6.3
This tutorial shows how you can install an Apache2 webserver on a CentOS 6.3 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On Fedora 17
This tutorial shows how you can install an Apache2 webserver on a Fedora 17 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On Ubuntu 12.04 LTS
This tutorial shows how you can install an Apache2 webserver on an
Ubuntu 12.04 LTS server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.
Using PHP5-FPM With Apache2 On CentOS 6.2
This tutorial shows how you can install an Apache2 webserver on a CentOS 6.2 server with PHP5 (through PHP-FPM)
and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative
PHP FastCGI implementation with some additional features useful for
sites of any size, especially busier sites.