mise à jour du code selon ansible-lint
[lhc/ansible.git] / templates / config_template.j2
1 <?php
2 $CONFIG = array (
3 'appstoreenabled' => false,
4 'trusted_domains' =>
5 array (
6 0 => 'nuage.migration.org',
7 ),
8 'datadirectory' => '{{ nextcloud_webroot}}/data',
9 'overwrite.cli.url' => 'https://nuage.migration.org',
10 'dbtype' => 'pgsql',
11 'dbname' => '{{ nextcloud_db_name }}',
12 'dbhost' => '/run/postgresql',
13 'dbport' => '',
14 'dbtableprefix' => 'oc_',
15 'dbuser' => '{{ nextcloud_websrv_user}}',
16 'dbpassword' => '',
17 'installed' => true,
18 'apps_paths' =>
19 array (
20 0 =>
21 array (
22 'path' => '{{ nextcloud_webroot}}/nextcloud/apps/',
23 'url' => '/apps',
24 'writable' => false,
25 ),
26 1 =>
27 array (
28 'path' => '{{ nextcloud_webroot}}/common/',
29 'url' => '/common-apps',
30 'writable' => false,
31 ),
32 ),
33 'theme' => '',
34 'loglevel' => 2,
35 );