Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Settings for the production environment.
|
||||
*/
|
||||
|
||||
$databases['default']['default'] = array(
|
||||
'driver' => 'mysql',
|
||||
'database' => '{{ db_name }}',
|
||||
'username' => '{{ db_user }}',
|
||||
'password' => '{{ db_pwd }}',
|
||||
'host' => '{{ db_host | default("localhost") }}',
|
||||
'prefix' => '',
|
||||
);
|
||||
|
||||
$settings['trusted_host_patterns'] = array(
|
||||
'^{{ server_hostname | regex_replace('(\.)', '\\\.') }}$'
|
||||
{% for host in server_aliases %}
|
||||
,'^{{ host | regex_replace('\.', '\\\.') }}$'
|
||||
{% endfor %}
|
||||
);
|
||||
|
||||
{% if 'dev' in group_names %}
|
||||
$config['system.performance']['css']['preprocess'] = FALSE;
|
||||
$config['system.performance']['js']['preprocess'] = FALSE;
|
||||
{% endif %}
|
||||
|
||||
$config_directories[CONFIG_SYNC_DIRECTORY] = '{{ config_dir | default("../config/sync/") }}';
|
Loading…
Add table
Add a link
Reference in a new issue