mirror of
https://github.com/KevinMidboe/playbooks-retailor.git
synced 2026-09-07 21:42:06 +00:00
21 lines
466 B
Django/Jinja
21 lines
466 B
Django/Jinja
## Managed by Ansible — do not edit by hand.
|
|
## Source: traefik_web_private_ips (group_vars/lb.yml)
|
|
http:
|
|
routers:
|
|
retailor-web:
|
|
rule: "Host(`app.{{ env_vars.DOMAIN }}`)"
|
|
service: retailor-web-svc
|
|
entryPoints:
|
|
- websecure
|
|
tls:
|
|
certResolver: letsencrypt
|
|
|
|
services:
|
|
retailor-web-svc:
|
|
loadBalancer:
|
|
servers:
|
|
{% for web_ip in env_vars.WEB_IPS %}
|
|
- url: "http://{{ web_ip }}:80"
|
|
{% endfor %}
|
|
|