From c04955a168e141c4a72b379df44e4e2efeb6086e Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Sat, 8 May 2021 02:19:57 +0200 Subject: [PATCH] traefik: Fix tor configuration include This patch will change the name of the config file from `traefik` to `traefik.conf`, since tor now includes `/etc/torrc.d/*.conf` in their config file. This should make sure that the config is actually loaded. This patch originates from the observation that new setups no longer create the tor hidden service for traefik. Some investigation resulted in the insight, that the tor node is no longer including the configuration file. --- roles/traefik/tasks/tor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/traefik/tasks/tor.yml b/roles/traefik/tasks/tor.yml index 26f18de..a535927 100644 --- a/roles/traefik/tasks/tor.yml +++ b/roles/traefik/tasks/tor.yml @@ -69,7 +69,7 @@ - name: Setup tor config copy: src: traefik-tor.conf - dest: "{{ traefik_tor_config_location }}/traefik" + dest: "{{ traefik_tor_config_location }}/traefik.conf" setype: "container_file_t" selevel: "{{ traefik_tor_selinux_level | default(omit) }}" mode: '0644'