Browse Source

Cambio la versión de nextcloud

main
Celestino Rey 1 year ago
parent
commit
a15bffb9d3
2 changed files with 58 additions and 2 deletions
  1. +2
    -2
      HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml
  2. +56
    -0
      NextCloud/config.php

+ 2
- 2
HelmCharts/nextcloud-chart/templates/nextcloud-deployment.yaml View File

@ -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


+ 56
- 0
NextCloud/config.php View File

@ -0,0 +1,56 @@
<?php
$CONFIG = array (
'htaccess.RewriteBase' => '/',
'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',
);

Loading…
Cancel
Save