add all**

This commit is contained in:
gregory hendrickson
2023-01-28 22:34:40 -08:00
parent c4b8a7df51
commit 22e03c22f2
17 changed files with 317 additions and 0 deletions

27
nextcloud-configmap.yaml Normal file
View File

@@ -0,0 +1,27 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: nextcloud-config
data:
config.php: |
<?php
$CONFIG = array (
'instanceid' => 'oc12345678',
'passwordsalt' => 'abcdefghijklmnopqrstuvwxyz',
'secret' => 'abcdefghijklmnopqrstuvwxyz',
'trusted_domains' =>
array (
0 => 'nextcloud.example.com',
),
'datadirectory' => '/var/www/html/data',
'overwrite.cli.url' => 'http://nextcloud.example.com',
'dbtype' => 'mysql',
'version' => '20.0.0.10',
'dbname' => 'nextcloud',
'dbhost' => 'nextcloud-mysql',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => 'password',
'installed' => true,
);