├── .gitignore ├── .vm_config_default.yml ├── LICENSE ├── Puppetfile ├── Puppetfile.lock ├── README.md ├── Vagrantfile ├── manifests └── base.pp ├── modules └── .gitkeep └── site-modules └── ghost ├── files └── config │ ├── nginx.conf │ ├── server.crt │ └── server.key ├── manifests ├── casperjs.pp ├── essentials.pp ├── init.pp ├── mysql.pp ├── nginx.pp ├── nvm.pp ├── postgresql.pp └── upstart.pp └── templates └── config └── app.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /.vm_config_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/.vm_config_default.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/LICENSE -------------------------------------------------------------------------------- /Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/Puppetfile -------------------------------------------------------------------------------- /Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/Puppetfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/manifests/base.pp -------------------------------------------------------------------------------- /modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site-modules/ghost/files/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/files/config/nginx.conf -------------------------------------------------------------------------------- /site-modules/ghost/files/config/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/files/config/server.crt -------------------------------------------------------------------------------- /site-modules/ghost/files/config/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/files/config/server.key -------------------------------------------------------------------------------- /site-modules/ghost/manifests/casperjs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/casperjs.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/essentials.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/essentials.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/init.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/mysql.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/nginx.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/nvm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/nvm.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/postgresql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/postgresql.pp -------------------------------------------------------------------------------- /site-modules/ghost/manifests/upstart.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/manifests/upstart.pp -------------------------------------------------------------------------------- /site-modules/ghost/templates/config/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ghost-Vagrant/HEAD/site-modules/ghost/templates/config/app.conf --------------------------------------------------------------------------------