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 ##
|
||||
### Internal ###
|
||||
internal_ingress_class: "ghp-internal-nginx"
|
||||
internal_ingress_class: "{{ namespace }}-internal-nginx"
|
||||
internal_loadbalancer_ip: "192.168.250.0"
|
||||
### External ###
|
||||
internal_ingress_class: "ghp-external-nginx"
|
||||
external_ingress_class: "{{ namespace }}-external-nginx"
|
||||
external_loadbalancer_ip: "192.168.250.10"
|
||||
### Local ###
|
||||
internal_ingress_class: "ghp-local-nginx"
|
||||
local_ingress_class: "{{ namespace }}-local-nginx"
|
||||
local_loadbalancer_ip: "192.168.250.20"
|
||||
|
||||
## External-dns ##
|
||||
|
@ -1,43 +1 @@
|
||||
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
|
||||
),
|
||||
),
|
||||
);
|
||||
nextcloud_values: {}
|
||||
|
Loading…
Reference in New Issue
Block a user