1
0
Fork 0

Refactor doc pages

This commit is contained in:
Julien Maitrehenry 2017-08-25 15:32:33 -04:00 committed by Traefiker
parent d568d2f55a
commit 24862402e5
19 changed files with 2043 additions and 2018 deletions

39
docs/backends/boltdb.md Normal file
View file

@ -0,0 +1,39 @@
# BoltDB backend
Træfik can be configured to use BoltDB as a backend configuration:
```toml
################################################################
# BoltDB configuration backend
################################################################
# Enable BoltDB configuration backend
#
# Optional
#
[boltdb]
# BoltDB file
#
# Required
#
endpoint = "/my.db"
# Enable watch BoltDB changes
#
# Optional
#
watch = true
# Prefix used for KV store.
#
# Optional
#
prefix = "/traefik"
# Override default configuration template. For advanced users :)
#
# Optional
#
# filename = "boltdb.tmpl"
```