diff options
Diffstat (limited to 'crates/atuin-server/server.toml')
| -rw-r--r-- | crates/atuin-server/server.toml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/crates/atuin-server/server.toml b/crates/atuin-server/server.toml index 1eff5b72..9ff95890 100644 --- a/crates/atuin-server/server.toml +++ b/crates/atuin-server/server.toml @@ -11,6 +11,10 @@ # db_uri="postgres://username:password@localhost/atuin" # db_uri="sqlite:///config/atuin-server.db" +## Optional: URI for read replica database +## If set, read-only queries will be routed to this database +# read_db_uri="postgres://username:password@localhost-replica/atuin" + ## Maximum size for one history entry # max_history_length = 8192 @@ -29,7 +33,6 @@ # host = 127.0.0.1 # port = 9001 -# [tls] -# enable = false -# cert_path = "" -# pkey_path = "" +## Enable legacy sync v1 routes (history-based sync) +## Set to false to disable and use only the newer record-based sync +# sync_v1_enabled = true |
