Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
1api:
2 insecure: true
3 dashboard: true
4
5entryPoints:
6 web:
7 address: ":80"
8 http:
9 redirections:
10 entryPoint:
11 to: websecure
12 scheme: https
13
14 websecure:
15 address: ":443"
16
17providers:
18 docker:
19 endpoint: "unix:///var/run/docker.sock"
20 exposedByDefault: false
21 network: app_network
22
23 file:
24 filename: /etc/traefik/dynamic_conf.yml
25
26certificatesResolvers:
27 letsencrypt:
28 acme:
29 email: your-email@domain.com
30 storage: /letsencrypt/acme.json
31 httpChallenge:
32 entryPoint: web
33http:
34 middlewares:
35 security-headers:
36 headers:
37 frameDeny: true
38 sslRedirect: true
39 browserXssFilter: true
40 contentTypeNosniff: true
41 forceSTSHeader: true
42 stsIncludeSubdomains: true
43 stsPreload: true
44 stsSeconds: 31536000
45
46 cors-headers:
47 headers:
48 accessControlAllowMethods:
49 - GET
50 - POST
51 - PUT
52 - DELETE
53 - OPTIONS
54 accessControlAllowHeaders:
55 - "*"
56 accessControlAllowOrigin: "*"