├── .gitignore ├── README.md ├── app ├── .vagrant │ └── machines │ │ └── lithium │ │ └── virtualbox │ │ ├── action_provision │ │ ├── action_set_name │ │ ├── id │ │ ├── index_uuid │ │ ├── private_key │ │ └── synced_folders ├── Vagrantfile └── test.php └── ops ├── apache-php.json ├── configs ├── consul_apache_php.json └── consul_mysql.json ├── consul.json ├── mysql.json ├── scripts ├── apache-php.sh ├── base.sh ├── consul.sh └── mysql.sh ├── templates ├── mysql.ctmpl └── php.ctmpl ├── terraform └── main.tf └── upstart ├── consul_bootstrap.conf ├── consul_client.conf ├── mysql_consul_template.conf └── php_consul_template.conf /.gitignore: -------------------------------------------------------------------------------- 1 | DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # atlas-lamp-tutorial 2 | -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/action_provision: -------------------------------------------------------------------------------- 1 | 1.5:260b6448-d0cd-432e-9e1f-e4a5113e598f -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/action_set_name: -------------------------------------------------------------------------------- 1 | 1423525382 -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/id: -------------------------------------------------------------------------------- 1 | 260b6448-d0cd-432e-9e1f-e4a5113e598f -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/index_uuid: -------------------------------------------------------------------------------- 1 | 243d3f0979e54716a921335f18d3c960 -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/app/.vagrant/machines/lithium/virtualbox/private_key -------------------------------------------------------------------------------- /app/.vagrant/machines/lithium/virtualbox/synced_folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/app/.vagrant/machines/lithium/virtualbox/synced_folders -------------------------------------------------------------------------------- /app/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/app/Vagrantfile -------------------------------------------------------------------------------- /app/test.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ops/apache-php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/apache-php.json -------------------------------------------------------------------------------- /ops/configs/consul_apache_php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/configs/consul_apache_php.json -------------------------------------------------------------------------------- /ops/configs/consul_mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/configs/consul_mysql.json -------------------------------------------------------------------------------- /ops/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/consul.json -------------------------------------------------------------------------------- /ops/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/mysql.json -------------------------------------------------------------------------------- /ops/scripts/apache-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/scripts/apache-php.sh -------------------------------------------------------------------------------- /ops/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/scripts/base.sh -------------------------------------------------------------------------------- /ops/scripts/consul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/scripts/consul.sh -------------------------------------------------------------------------------- /ops/scripts/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/scripts/mysql.sh -------------------------------------------------------------------------------- /ops/templates/mysql.ctmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/templates/mysql.ctmpl -------------------------------------------------------------------------------- /ops/templates/php.ctmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/templates/php.ctmpl -------------------------------------------------------------------------------- /ops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/terraform/main.tf -------------------------------------------------------------------------------- /ops/upstart/consul_bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/upstart/consul_bootstrap.conf -------------------------------------------------------------------------------- /ops/upstart/consul_client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/upstart/consul_client.conf -------------------------------------------------------------------------------- /ops/upstart/mysql_consul_template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/upstart/mysql_consul_template.conf -------------------------------------------------------------------------------- /ops/upstart/php_consul_template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/atlas-lamp-tutorial/HEAD/ops/upstart/php_consul_template.conf --------------------------------------------------------------------------------