From 0c5e250800f1b8f50ea832bf414a5a7cdfe944a4 Mon Sep 17 00:00:00 2001 From: morguldir Date: Tue, 26 Jul 2022 09:05:34 +0200 Subject: Add support for prepending a path to all routes for the server (#484) * Add support for prepending a path to all routes * Don't nest if there is no path provided Co-authored-by: Conrad Ludgate * Change the default for the path variable * run cargo-fmt Co-authored-by: Conrad Ludgate --- atuin-server/src/settings.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'atuin-server/src/settings.rs') diff --git a/atuin-server/src/settings.rs b/atuin-server/src/settings.rs index b0e07b71..8da0c0aa 100644 --- a/atuin-server/src/settings.rs +++ b/atuin-server/src/settings.rs @@ -11,6 +11,7 @@ pub const HISTORY_PAGE_SIZE: i64 = 100; pub struct Settings { pub host: String, pub port: u16, + pub path: String, pub db_uri: String, pub open_registration: bool, pub max_history_length: usize, @@ -35,6 +36,7 @@ impl Settings { .set_default("port", 8888)? .set_default("open_registration", false)? .set_default("max_history_length", 8192)? + .set_default("path", "")? .add_source( Environment::with_prefix("atuin") .prefix_separator("_") -- cgit v1.3.1