update and fix sample vars
This commit is contained in:
parent
d3db3af028
commit
6e7a28c2ae
@ -22,13 +22,13 @@ metallb_bgp_aggregation_length: 24
|
|||||||
|
|
||||||
## Nginx Ingress ##
|
## Nginx Ingress ##
|
||||||
### Internal ###
|
### Internal ###
|
||||||
internal_ingress_class: "ghp-internal-nginx"
|
internal_ingress_class: "{{ namespace }}-internal-nginx"
|
||||||
internal_loadbalancer_ip: "192.168.250.0"
|
internal_loadbalancer_ip: "192.168.250.0"
|
||||||
### External ###
|
### External ###
|
||||||
internal_ingress_class: "ghp-external-nginx"
|
external_ingress_class: "{{ namespace }}-external-nginx"
|
||||||
external_loadbalancer_ip: "192.168.250.10"
|
external_loadbalancer_ip: "192.168.250.10"
|
||||||
### Local ###
|
### Local ###
|
||||||
internal_ingress_class: "ghp-local-nginx"
|
local_ingress_class: "{{ namespace }}-local-nginx"
|
||||||
local_loadbalancer_ip: "192.168.250.20"
|
local_loadbalancer_ip: "192.168.250.20"
|
||||||
|
|
||||||
## External-dns ##
|
## External-dns ##
|
||||||
|
@ -1,43 +1 @@
|
|||||||
nextcloud_values:
|
nextcloud_values: {}
|
||||||
nextcloud:
|
|
||||||
configs:
|
|
||||||
mail.fix.config.php: |-
|
|
||||||
<?php
|
|
||||||
$CONFIG = array (
|
|
||||||
"mail_smtptimeout" => 60,
|
|
||||||
);
|
|
||||||
fix.config.php: |-
|
|
||||||
<?php
|
|
||||||
$CONFIG = array (
|
|
||||||
'trusted_proxies' => ['{{ web_proxy_internal_ip }}'],
|
|
||||||
'overwriteprotocol' => 'https',
|
|
||||||
'overwrite.cli.url' => 'https://nextcloud.{{ domain }}',
|
|
||||||
'mail_smtpstreamoptions' =>
|
|
||||||
array (
|
|
||||||
'ssl' =>
|
|
||||||
array (
|
|
||||||
'allow_self_signed' => true,
|
|
||||||
'verify_peer' => false,
|
|
||||||
'verify_peer_name' => false,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
rgw.config.php: |-
|
|
||||||
<?php
|
|
||||||
$CONFIG = array (
|
|
||||||
'objectstore_multibucket' => array(
|
|
||||||
'class' => '\\OC\\Files\\ObjectStore\\S3',
|
|
||||||
'arguments' => array(
|
|
||||||
'bucket' => 'nextcloud',
|
|
||||||
'autocreate' => true,
|
|
||||||
'key' => 'K4PNZLSTLIDQJMZUV27P',
|
|
||||||
'secret' => 'iPScsni8RS2aT9MFymfQYLPD7W8dVrRqFpafBKDc',
|
|
||||||
'hostname' => 'sds1-osd1.lan',
|
|
||||||
'port' => 8080,
|
|
||||||
'use_ssl' => false,
|
|
||||||
'num_buckets' => 16,
|
|
||||||
'region' => 'us-east-1',
|
|
||||||
'use_path_style' => true
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
Loading…
Reference in New Issue
Block a user