├── .ansible-lint ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── converge.yml │ ├── molecule.yml │ ├── requirements.yml │ └── source-install.yml ├── tasks ├── configure-apcu.yml ├── configure-fpm.yml ├── configure-opcache.yml ├── configure.yml ├── install-from-source.yml ├── main.yml ├── setup-Debian.yml └── setup-RedHat.yml ├── templates ├── apc.ini.j2 ├── fpm-init.j2 ├── opcache.ini.j2 ├── php-fpm.conf.j2 ├── php.ini.j2 └── www.conf.j2 └── vars ├── Debian-11.yml ├── Debian-12.yml ├── Debian.yml ├── RedHat.yml ├── Ubuntu-20.yml ├── Ubuntu-22.yml └── Ubuntu-24.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/molecule/default/requirements.yml -------------------------------------------------------------------------------- /molecule/default/source-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/molecule/default/source-install.yml -------------------------------------------------------------------------------- /tasks/configure-apcu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/configure-apcu.yml -------------------------------------------------------------------------------- /tasks/configure-fpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/configure-fpm.yml -------------------------------------------------------------------------------- /tasks/configure-opcache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/configure-opcache.yml -------------------------------------------------------------------------------- /tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/configure.yml -------------------------------------------------------------------------------- /tasks/install-from-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/install-from-source.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /templates/apc.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/apc.ini.j2 -------------------------------------------------------------------------------- /templates/fpm-init.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/fpm-init.j2 -------------------------------------------------------------------------------- /templates/opcache.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/opcache.ini.j2 -------------------------------------------------------------------------------- /templates/php-fpm.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/php-fpm.conf.j2 -------------------------------------------------------------------------------- /templates/php.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/php.ini.j2 -------------------------------------------------------------------------------- /templates/www.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/templates/www.conf.j2 -------------------------------------------------------------------------------- /vars/Debian-11.yml: -------------------------------------------------------------------------------- 1 | --- 2 | __php_default_version_debian: "7.4" 3 | -------------------------------------------------------------------------------- /vars/Debian-12.yml: -------------------------------------------------------------------------------- 1 | --- 2 | __php_default_version_debian: "8.2" 3 | -------------------------------------------------------------------------------- /vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/vars/Debian.yml -------------------------------------------------------------------------------- /vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php/HEAD/vars/RedHat.yml -------------------------------------------------------------------------------- /vars/Ubuntu-20.yml: -------------------------------------------------------------------------------- 1 | --- 2 | __php_default_version_debian: "7.4" 3 | -------------------------------------------------------------------------------- /vars/Ubuntu-22.yml: -------------------------------------------------------------------------------- 1 | --- 2 | __php_default_version_debian: "8.1" 3 | -------------------------------------------------------------------------------- /vars/Ubuntu-24.yml: -------------------------------------------------------------------------------- 1 | --- 2 | __php_default_version_debian: "8.3" 3 | --------------------------------------------------------------------------------