THE HUGE REFACTORING CALENDER WEEK 33; Optimized Matrix and during this updated variables, and implemented better reset and cleanup mode handling, also solved some initial setup bugs

This commit is contained in:
2025-08-15 15:15:48 +02:00
parent 0228014d34
commit 022800425d
271 changed files with 1098 additions and 916 deletions

View File

@@ -11,17 +11,17 @@ return array (
'lost_password_link' => 'disabled',
// URL of provider. All other URLs are auto-discovered from .well-known
'oidc_login_provider_url' => '{{oidc.client.issuer_url}}',
'oidc_login_provider_url' => '{{ oidc.client.issuer_url }}',
// Client ID and secret registered with the provider
'oidc_login_client_id' => '{{oidc.client.id}}',
'oidc_login_client_secret' => '{{oidc.client.secret}}',
'oidc_login_client_id' => '{{ oidc.client.id }}',
'oidc_login_client_secret' => '{{ oidc.client.secret }}',
// Automatically redirect the login page to the provider
'oidc_login_auto_redirect' => true,
// Redirect to this page after logging out the user
'oidc_login_logout_url' => 'https://{{domains | get_domain(application_id)}}',
'oidc_login_logout_url' => 'https://{{ domains | get_domain(application_id) }}',
// If set to true the user will be redirected to the
// logout endpoint of the OIDC provider after logout
@@ -36,7 +36,7 @@ return array (
'oidc_login_default_quota' => '{{applications | get_app_conf(application_id, 'default_quota', True)}}',
// Login button text
'oidc_login_button_text' => '{{oidc.button_text}}',
'oidc_login_button_text' => '{{ oidc.button_text }}',
// Hide the NextCloud password change form.
'oidc_login_hide_password_form' => true,

View File

@@ -37,7 +37,7 @@
container_name: "{{ nextcloud_proxy_name }}"
logging:
driver: journald
restart: {{DOCKER_RESTART_POLICY}}
restart: {{ DOCKER_RESTART_POLICY }}
ports:
- "127.0.0.1:{{ports.localhost.http[application_id]}}:{{ container_port }}"
volumes:
@@ -53,7 +53,7 @@
cron:
container_name: "{{ nextcloud_cron_name }}"
image: "{{ nextcloud_image }}:{{ nextcloud_version }}"
restart: {{DOCKER_RESTART_POLICY}}
restart: {{ DOCKER_RESTART_POLICY }}
logging:
driver: journald
volumes:

View File

@@ -2,7 +2,7 @@
server
{
server_name {{domain}};
server_name {{ domain }};
{% include 'roles/srv-web-7-7-letsencrypt/templates/ssl_header.j2' %}