[mod] role:owncloud:auth

This commit is contained in:
roydfalk 2024-07-09 13:28:50 +02:00
parent 37a5b0cb7b
commit 349832c77e
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
"var_owncloud_platform": "linux-amd64", "var_owncloud_platform": "linux-amd64",
"var_owncloud_domain": "owncloud.example.org", "var_owncloud_domain": "owncloud.example.org",
"var_owncloud_admin_password": "REPLACE_ME", "var_owncloud_admin_password": "REPLACE_ME",
"var_owncloud_authentication_kind": "none", "var_owncloud_authentication_kind": "internal",
"var_owncloud_authentication_data_authelia_url_base": "https://authelia.example.org", "var_owncloud_authentication_data_authelia_url_base": "https://authelia.example.org",
"var_owncloud_authentication_data_authelia_web_client_id": "owncloud_web", "var_owncloud_authentication_data_authelia_web_client_id": "owncloud_web",
"var_owncloud_authentication_data_authelia_web_client_secret": "REPLACE_ME", "var_owncloud_authentication_data_authelia_web_client_secret": "REPLACE_ME",

View file

@ -3,7 +3,7 @@ OCIS_INSECURE="false"
PROXY_TLS="false" PROXY_TLS="false"
{% if var_owncloud_authentication_kind != 'none' %} {% if var_owncloud_authentication_kind != 'internal' %}
PROXY_AUTOPROVISION_ACCOUNTS="false" PROXY_AUTOPROVISION_ACCOUNTS="false"
{% endif %} {% endif %}

View file

@ -27,7 +27,7 @@
"type": "string", "type": "string",
"mandatory": false, "mandatory": false,
"options": [ "options": [
"none", "internal",
"authelia" "authelia"
] ]
}, },