-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
64 lines (56 loc) · 1.65 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
# File where ACME data is stored
traefik_acme_file: '{{ traefik_config_path }}/acme.json'
# Main configuration based on 1:1 dict copy of the intended Traefik config
# Full blown example:
# traefik_config:
# global:
# checkNewVersion: false
# sendAnonymousUsage: false
# entryPoints:
# web:
# address: ':80'
# http:
# redirections:
# entryPoint:
# to: websecure
# scheme: https
# websecure:
# address: ':443'
# certificatesResolvers:
# myresolver:
# acme:
# email: ''
# storage: '{{ traefik_acme_file }}'
# dnsChallenge:
# provider: cloudflare
traefik_config: {}
# Directory where to place the Traefik configs
traefik_config_path: /etc/traefik
# Systemd service environment configuration
# Used for setting lego environment variables to point to the appropriate
# secrets file with the goal to automate the Let's Encrypt DNS verification
# Example: CF_API_EMAIL_FILE=/etc/traefik/acme_token
traefik_environment: []
# System group used for the Traefik processes
traefik_group: traefik
# Directory where to place the Traefik logs
traefik_log_path: /var/log/traefik
# Provider configuration based on 1:1 dict copy of the intended Traefik config
# Full blown example:
# traefik_provider:
# http:
# routers:
# ocis:
# rule: Host(`example.com`)
# service: backend
# tls:
# certResolver: myresolver
# services:
# backend:
# loadBalancer:
# servers:
# - url: 'http://127.0.0.1:8080/'
traefik_provider: {}
# System user used for the Traefik processes
traefik_user: traefik