Compare commits

..

No commits in common. "5d3ca738c0399d35e6a81e5d379f61d3aafe8464" and "cad755f818814bef7593df616aeb8598ff1c1801" have entirely different histories.

3 changed files with 1 additions and 4 deletions

View file

@ -4,7 +4,6 @@ traefik_virtual_host: localhost
traefik:
expose_internally: True
expose_externally: False
enable_acme: False
use_acme_staging: True
dns_challenge_provider: False
# NOT WORKING YET!

View file

@ -33,6 +33,7 @@
force: no
dest: /home/{{ docker_user }}/traefik/acme.json
mode: 0600
state: touch
tags: config
- name: "docker-compose: Teardown existing Traefik service (only removes the containers)"

View file

@ -20,7 +20,6 @@ watch = true
endpoint = "unix:///var/run/docker.sock"
exposedByDefault = false
{% if traefik.enable_acme %}
[certificatesResolvers.defaultresolver.acme]
{% if traefik.use_acme_staging %}
caServer = "https://acme-staging-v02.api.letsencrypt.org/directory"
@ -29,8 +28,6 @@ watch = true
storage = "acme.json"
[certificatesResolvers.defaultresolver.acme.httpChallenge]
entryPoint = "web"
{% endif %}
{% if traefik.extra_mapping | default(False) %}
### NOT WORKING YET!