We can now work on federation locally thank to traefik

This commit is contained in:
Eliot Berriot 2018-04-08 18:19:32 +02:00
commit 6c0a43a0ea
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
9 changed files with 246 additions and 12 deletions

26
docker/traefik.toml Normal file
View file

@ -0,0 +1,26 @@
defaultEntryPoints = ["http", "https"]
################################################################
# Web configuration backend
################################################################
[web]
address = ":8040"
################################################################
# Docker configuration backend
################################################################
[docker]
domain = "funkwhale.test"
watch = true
exposedbydefault = false
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
certFile = "/ssl/traefik.crt"
keyFile = "/ssl/traefik.key"