mirror of
https://github.com/ghndrx/nextcloud-manifest.git
synced 2026-02-10 06:55:00 +00:00
add all**
This commit is contained in:
27
nextcloud-configmap.yaml
Normal file
27
nextcloud-configmap.yaml
Normal 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,
|
||||
);
|
||||
Reference in New Issue
Block a user