├── .gitignore ├── .kitchen.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Strainerfile ├── attributes └── default.rb ├── libraries └── helpers.rb ├── metadata.rb ├── recipes ├── apache.rb ├── app.rb ├── database.rb ├── default.rb ├── languages.rb └── nginx.rb ├── templates └── default │ ├── nginx.conf.erb │ ├── wordpress.conf.erb │ └── wp-config.php.erb └── test └── integration ├── default └── bats │ └── verify_default.bats └── nginx └── bats └── verify_default.bats /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Strainerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/Strainerfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/apache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/apache.rb -------------------------------------------------------------------------------- /recipes/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/app.rb -------------------------------------------------------------------------------- /recipes/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/database.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/languages.rb -------------------------------------------------------------------------------- /recipes/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/recipes/nginx.rb -------------------------------------------------------------------------------- /templates/default/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/templates/default/nginx.conf.erb -------------------------------------------------------------------------------- /templates/default/wordpress.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/templates/default/wordpress.conf.erb -------------------------------------------------------------------------------- /templates/default/wp-config.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/templates/default/wp-config.php.erb -------------------------------------------------------------------------------- /test/integration/default/bats/verify_default.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/test/integration/default/bats/verify_default.bats -------------------------------------------------------------------------------- /test/integration/nginx/bats/verify_default.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brint/wordpress-cookbook/HEAD/test/integration/nginx/bats/verify_default.bats --------------------------------------------------------------------------------