disable nextcloud
This commit is contained in:
36
.nextcloud/rct/values.yaml
Normal file
36
.nextcloud/rct/values.yaml
Normal file
@@ -0,0 +1,36 @@
|
||||
# Toutes les configurations destinées au chart Nextcloud
|
||||
# doivent être indentées sous la clé 'nextcloud'
|
||||
nextcloud:
|
||||
replicaCount: 1
|
||||
# 1. Indispensable pour que Traefik crée la règle de routage
|
||||
# Configuration Réseau / Traefik
|
||||
ingress:
|
||||
enabled: true
|
||||
className: traefik
|
||||
path: /
|
||||
pathType: Prefix
|
||||
hosts:
|
||||
- nextcloud-rct.example.com
|
||||
|
||||
# Configuration de l'application
|
||||
nextcloud:
|
||||
host: nextcloud-rct.example.com
|
||||
username: admin
|
||||
password: rct
|
||||
|
||||
# AJOUTEZ CE BLOC : Autorise Kubernetes à interroger le pod
|
||||
configs:
|
||||
trusted_domains.config.php: |-
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'localhost',
|
||||
1 => 'nextcloud-rct.example.com',
|
||||
2 => '127.0.0.1',
|
||||
),
|
||||
);
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
size: 1Gi
|
||||
Reference in New Issue
Block a user