forked from newmediadenver/drupal-lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drupal_lamp.json
38 lines (38 loc) · 1.06 KB
/
.drupal_lamp.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
{
"mysql": {
"tunable": {
"max_allowed_packet": "16M",
"key_buffer_size": "32M",
"max_connect_errors": "1000",
"tmp_table_size": "32M",
"max_connections": "500",
"thread_cache_size": "50",
"table_open_cache": "512",
"innodb_flush_log_at_trx_commit": "0",
"innodb_file_per_table": "1",
"innodb_buffer_pool_size": "128M",
"innodb_flush_method": "O_DIRECT",
"sync_binlog": "0"
}
},
"drupal": {
"sites": {
"drupal": {
"deploy": false,
"clean": false,
"releases": 1,
"files": "sites/default/files",
"settings": "sites/default/settings.php",
"repository": {
"uri": "http://git.drupal.org/project/drupal.git",
"revision": "7.x"
},
"profile": "standard",
"install": {
"install_configure_form.update_status_module": "'array(FALSE,FALSE)'",
"--clean-url": 1
}
}
}
}
}