├── .gitignore ├── LICENSE ├── README.md ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── chroot.yml └── main.yml └── templates ├── php.ini.j2 └── www.conf.j2 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | .ideas 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/README.md -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dependencies: [] -------------------------------------------------------------------------------- /tasks/chroot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/tasks/chroot.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/php.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/templates/php.ini.j2 -------------------------------------------------------------------------------- /templates/www.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Servers-for-Hackers/ansible-php-fpm/HEAD/templates/www.conf.j2 --------------------------------------------------------------------------------