45 lines
No EOL
1.4 KiB
YAML
45 lines
No EOL
1.4 KiB
YAML
#SPDX-License-Identifier: MIT-0
|
|
---
|
|
# defaults file for opencloud
|
|
|
|
# Base directory configuration (inherited from base role or defined here)
|
|
docker_compose_base_dir: /etc/docker/compose
|
|
docker_volume_base_dir: /srv/data
|
|
|
|
# OpenCloud-specific configuration
|
|
opencloud_service_name: opencloud
|
|
opencloud_docker_compose_dir: "{{ docker_compose_base_dir }}/{{ opencloud_service_name }}"
|
|
opencloud_docker_volume_dir: "{{ docker_volume_base_dir }}/{{ opencloud_service_name }}"
|
|
|
|
# Service configuration
|
|
opencloud_domain: "opencloud.local.test"
|
|
opencloud_image: "opencloudeu/opencloud:latest"
|
|
opencloud_port: 9200
|
|
opencloud_admin_password: "admin"
|
|
opencloud_log_level: "warn"
|
|
opencloud_extra_hosts: []
|
|
|
|
# Traefik configuration
|
|
opencloud_traefik_network: "proxy"
|
|
opencloud_use_ssl: true
|
|
|
|
# OIDC configuration (leave empty to use built-in IDP)
|
|
opencloud_oidc_issuer: ""
|
|
opencloud_oidc_client_id: "opencloud"
|
|
opencloud_oidc_client_secret: ""
|
|
opencloud_oidc_rewrite_wellknown: true
|
|
opencloud_oidc_user_claim: "preferred_username"
|
|
opencloud_oidc_user_cs3_claim: "username"
|
|
opencloud_oidc_account_edit_url: ""
|
|
opencloud_oidc_autoprovision_accounts: true
|
|
|
|
# S3 storage configuration (leave empty to use local storage)
|
|
opencloud_use_s3_storage: false
|
|
opencloud_s3_endpoint: ""
|
|
opencloud_s3_region: "us-east-1"
|
|
opencloud_s3_access_key: ""
|
|
opencloud_s3_secret_key: ""
|
|
opencloud_s3_bucket: "opencloud"
|
|
|
|
# CSP configuration (extra URLs to allow in connect-src)
|
|
opencloud_csp_extra_connect_src: [] |