├── .chef └── knife.rb ├── .gitignore ├── .ruby-gemset ├── Berksfile ├── Berksfile.lock ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── data_bags └── users │ └── deployer.json ├── nodes └── machine.ip.json ├── roles └── base.json └── site-cookbooks ├── apt-packages └── recipes │ └── default.rb ├── chef-monit ├── files │ └── default │ │ ├── nginx.conf │ │ └── puma.conf └── recipes │ └── production.rb └── chef-nginx ├── recipes └── production.rb └── templates └── project.conf.erb /.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/.chef/knife.rb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /cookbooks/ 2 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | chef -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/Berksfile -------------------------------------------------------------------------------- /Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/Berksfile.lock -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/README.md -------------------------------------------------------------------------------- /data_bags/users/deployer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/data_bags/users/deployer.json -------------------------------------------------------------------------------- /nodes/machine.ip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/nodes/machine.ip.json -------------------------------------------------------------------------------- /roles/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/roles/base.json -------------------------------------------------------------------------------- /site-cookbooks/apt-packages/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/apt-packages/recipes/default.rb -------------------------------------------------------------------------------- /site-cookbooks/chef-monit/files/default/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/chef-monit/files/default/nginx.conf -------------------------------------------------------------------------------- /site-cookbooks/chef-monit/files/default/puma.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/chef-monit/files/default/puma.conf -------------------------------------------------------------------------------- /site-cookbooks/chef-monit/recipes/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/chef-monit/recipes/production.rb -------------------------------------------------------------------------------- /site-cookbooks/chef-nginx/recipes/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/chef-nginx/recipes/production.rb -------------------------------------------------------------------------------- /site-cookbooks/chef-nginx/templates/project.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillshevch/chef-template/HEAD/site-cookbooks/chef-nginx/templates/project.conf.erb --------------------------------------------------------------------------------