-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchef.json
47 lines (47 loc) · 1.06 KB
/
chef.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"app": {
"name": "webproject",
"db_name": "webproject",
"db_dump": "/var/www/webproject/db_dump.sql",
"server_name": "webproject.local",
"server_aliases": [ "www.webproject.local" ],
"docroot": "/var/www/webproject/web",
"packages": [ "vim", "git", "screen", "curl", "imagemagick" ]
},
"mysql": {
"server_root_password": "qweqwe",
"server_repl_password": "qweqwe",
"server_debian_password": "qweqwe",
"bind_address": "127.0.0.1",
"allow_remote_root": false
},
"postgresql": {
"password": {
"postgres": "qweqwe"
},
"users": [
{
"username": "root",
"password": "qweqwe",
"superuser": true,
"createdb": true,
"login": true
}
]
},
"php": {
"dotdeb_distribution": "wheezy-php55",
"tmpfs": false,
"ini_settings": {
"memory_limit": "1536M",
"short_open_tag": "Off"
}
},
"run_list": [
"recipe[app::packages]",
"recipe[app::web_server]",
"recipe[app::vhost]",
"recipe[memcached]",
"recipe[app::db]"
]
}