-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata_bag-example.json
More file actions
102 lines (96 loc) · 2.8 KB
/
Copy pathdata_bag-example.json
File metadata and controls
102 lines (96 loc) · 2.8 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"id": "php-webapp",
"type": {
"app_server": [
"apache",
"php",
"memcached"
]
},
"app_type": "php-webapp",
"app_lock_dir": "/root/.LOCK_FILE.d",
"mysql": {
"with_mysql": true,
"app_db_name": "php-webapp",
"mysql_version": "mysql5",
"install_method": "yum",
"install_name": "mysql",
"socket_location": "/tmp/mysql.sock",
"replication_role": "master"
},
"memcached": {
"with_memcached": true,
"memory": "512",
"port": "11211",
"user": "nobody",
"maxconn": "512",
"listen": ""
},
"apache": {
"www_root": "/var/www",
"with_apache": true,
"with_ssl": false,
"enable_module": [
],
"disable_module": [
]
},
"php": {
"locked": true,
"unlocked": true,
"php_version": "php53",
"install_method": "package",
"packages": [
"php53-mcrypt",
"php53-ldap"
],
"unused_modules": [
],
"with_memcache": true,
"memcache_version": "2.2.6",
"with_apc": true,
"apc_version": "3.1.9",
"apc_options": [
{ "option": "memcache" },
{ "option": "memcache" }
],
"ini": [
{ "module": "memcache" },
{ "module": "mysqli",
"option": "setting"
}
],
"install_modules": [
],
"disable_modules": [
]
},
"server_roles": [
"application specific role(s), typically the name of the app, e.g., APP_NAME",
"php-webapp_app"
],
"vhosts": [
{ "server_name": "vhost",
"server_aliases": [
"alias1",
"alias2"
],
"deploy_root": "/var/www/php-webapp",
"doc_root": "/var/www/php-webapp/current/",
"with_ssl": false,
"is_enabled": true,
"is_default": false
},
{ "server_name": "vhost2",
"server_aliases": [
"alias1",
"alias2"
],
"deploy_root": "/var/www/php-webapp2",
"doc_root": "/var/www/php-webapp2/current/public",
"with_ssl": false,
"is_enabled": true,
"is_default": false
}
]
}