-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmagento.json
55 lines (55 loc) · 1.51 KB
/
magento.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
48
49
50
51
52
53
54
55
{
"magento": {
"application": {
"name": "autoloader",
"uid": ":auto",
"main_domain": "autoloader.dev",
"directory": "<%=current_path%>/build",
"domain_map": {},
"composer": true,
"composer_path": "../",
"database_options": {
"create_test": true
},
"php_extensions": {
"xdebug": {
"preferred_state": "beta",
"zend_extensions": ["xdebug.so"],
"directives": {
"xdebug.remote_enable": "1",
"xdebug.remote_port": "9000",
"xdebug.remote_host": "192.168.6.1"
}
}
}
}
},
"php": {
"major_version": "5.4",
"directives": {
"date.timezone": "UTC",
"error_reporting": "E_ALL",
"display_errors": "1",
"log_errors": "1",
"error_log": "<%=current_path%>/var/log/php-error.log"
}
},
"recipes": [
"mysql::server",
"magento::application",
"git::default",
"magento::dev"
],
"vm": {
"cpu": 4,
"memory": 1024,
"ip": "192.168.6.10",
"mount_dirs": {
"<%=current_path%>": "<%=current_path%>"
},
"mount_dir_options": {
"type": "nfs",
"mount_options": ["rw", "tcp", "async", "nolock"]
}
}
}