mirror of
https://github.com/traefik/traefik.git
synced 2025-09-30 10:11:28 +02:00
37 lines
587 B
Markdown
37 lines
587 B
Markdown
# BoltDB Backend
|
|
|
|
Træfik can be configured to use BoltDB as a backend configuration:
|
|
|
|
```toml
|
|
################################################################
|
|
# BoltDB configuration backend
|
|
################################################################
|
|
|
|
# Enable BoltDB configuration backend
|
|
[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"
|
|
```
|