$ tree . ├── LICENSE ├── README.md ├── Vagrantfile ├── Vagrantfile.works ├── group_vars │ └── all ├── hosts ├── roles │ ├── common │ │ ├── files │ │ │ └── iptables-save │ │ ├── handlers │ │ │ └── main.yml │ │ └── tasks │ │ └── main.yml │ ├── magento │ │ └── tasks │ │ └── main.yml │ ├── mysql │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ └── my.cnf.j2 │ ├── nginx │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ └── default.conf │ └── php-fpm │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ ├── magento.conf │ └── mcrypt.ini ├── site.yml