Преглед изворни кода

Configure `encodedCharacters` for the `web` Traefik entrypoint (if `matrix_playbook_ssl_enabled` is `false`) to fix Traefik 3.6.3+ regression in those cases

Continuation of e7cb9eee79

Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/4798
pull/4805/head
Slavi Pantaleev пре 2 месеци
родитељ
комит
12bee503e0
1 измењених фајлова са 5 додато и 0 уклоњено
  1. +5
    -0
      group_vars/matrix_servers

+ 5
- 0
group_vars/matrix_servers Прегледај датотеку

@@ -5844,6 +5844,11 @@ traefik_config_entrypoint_web_transport_respondingTimeouts_readTimeout: 300s
traefik_config_entrypoint_web_secure_http_encodedCharacters_enabled: true traefik_config_entrypoint_web_secure_http_encodedCharacters_enabled: true
traefik_config_entrypoint_web_secure_http_encodedCharacters_allowEncodedSlash: true traefik_config_entrypoint_web_secure_http_encodedCharacters_allowEncodedSlash: true
traefik_config_entrypoint_web_secure_http_encodedCharacters_allowEncodedHash: true traefik_config_entrypoint_web_secure_http_encodedCharacters_allowEncodedHash: true
# Doing the same for the `web` entrypoint, for people who disable SSL for the playbook
# and actually go through this entrypoint.
traefik_config_entrypoint_web_http_encodedCharacters_enabled: "{{ not matrix_playbook_ssl_enabled }}"
traefik_config_entrypoint_web_http_encodedCharacters_allowEncodedSlash: "{{ not matrix_playbook_ssl_enabled }}"
traefik_config_entrypoint_web_http_encodedCharacters_allowEncodedHash: "{{ not matrix_playbook_ssl_enabled }}"


traefik_additional_entrypoints_auto: | traefik_additional_entrypoints_auto: |
{{ {{


Loading…
Откажи
Сачувај