Standalone lamp stack cookbook
Standalone cookbook to install and configure a vanilla LAMP stack includes httpd service, mysql (local install), and PHP on Amazon Linux. This cookbook should be used as a base replacement for this tutorial - http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html
You'll need to create a data bag "mysql" with item "password", store your root password there with the json flag "mysql_password"
Amazon Linux
Will add more as time allows
- lamp::default
- lamp::httpd
- lamp::mysql
- lamp::prep
| Key | Type | Description | Default |
|---|---|---|---|
| ['lamp']['mysql']['install_sql'] | Boolean | Should only run on the first pass to prevent rewriting of your root password | true |
Include lamp in your node's run_list:
{
"run_list": [
"recipe[lamp::default]"
]
}Author:: Karl Girthofer (karlgirthofer@gmail.com) License:: GNU GENERAL PUBLIC LICENSE