From a15bffb9d30d61d523962d74610a5699a259e433 Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Mon, 15 Jan 2024 11:45:20 +0100 Subject: [PATCH] =?UTF-8?q?Cambio=20la=20versi=C3=B3n=20de=20nextcloud?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/nextcloud-deployment.yaml | 4 +- NextCloud/config.php | 56 +++++++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 NextCloud/config.php diff --git a/HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml b/HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml index 36e2bfff..76a135fd 100644 --- a/HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml +++ b/HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml @@ -33,8 +33,8 @@ spec: spec: containers: - name: nextcloud - #image: nextcloud - image: docker-registry:32000/nextcloud:1.0 + image: nextcloud:latest + #image: docker-registry:32000/nextcloud:1.0 volumeMounts: - name: server-storage mountPath: /var/www/html diff --git a/NextCloud/config.php b/NextCloud/config.php new file mode 100644 index 00000000..ba60de7d --- /dev/null +++ b/NextCloud/config.php @@ -0,0 +1,56 @@ + '/', + 'memcache.local' => '\\OC\\Memcache\\APCu', + 'apps_paths' => + array ( + 0 => + array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), + ), + 'instanceid' => 'ocpl3k6iguxf', + 'passwordsalt' => 'ac6xvAO7CePJybwinGI2XLdYWQHW1A', + 'secret' => 'tC+8RB5b78Krwt3n2/oXl8UgCnIEDQy3tEG/VlznWEVgQoxk', + 'trusted_domains' => + array ( + 0 => 'nextcloud.reymota.es', + ), + 'datadirectory' => '/var/www/html/data', + 'dbtype' => 'mysql', + 'version' => '25.0.3.2', + 'overwrite.cli.url' => 'https://nextcloud.reymota.es', + 'overwriteprotocol' => 'https', + 'installed' => true, + 'mail_smtpmode' => 'smtp', + 'mail_smtpsecure' => 'ssl', + 'mail_sendmailmode' => 'smtp', + 'mail_from_address' => 'creylopez', + 'mail_domain' => 'yahoo.es', + 'mail_smtpauthtype' => 'LOGIN', + 'mail_smtpauth' => 1, + 'mail_smtphost' => 'smtp.gmail.com', + 'mail_smtpport' => '465', + 'mail_smtpname' => 'king.bernard.b@gmail.com', + 'mail_smtppassword' => 'hpvkLUQG', + 'loglevel' => 0, + 'maintenance' => false, + 'app_install_overwrite' => + array ( + 0 => 'documentserver_community', + ), + 'theme' => '', + 'dbname' => 'nextcloud_db', + 'dbhost' => 'nextcloud-mysql', + 'dbuser' => 'root', + 'dbpassword' => 'Dsa-0213', + 'updater.secret' => '$2y$10$wcEbQ5iZpDEwJkmA3dw6s.anS/aFNVgV96oKBTlEXG88sW59ghXSO', +);