From 2f9cebccc2953847b4cf9e93b0ab0b75b4498446 Mon Sep 17 00:00:00 2001 From: Stavros Polymenis Date: Fri, 27 Oct 2017 13:46:03 +0100 Subject: [PATCH] Use .logarion/config.toml for webserver too --- src/logarion_webserver.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logarion_webserver.ml b/src/logarion_webserver.ml index 4c6ad41..0d7212e 100644 --- a/src/logarion_webserver.ml +++ b/src/logarion_webserver.ml @@ -52,7 +52,7 @@ let serve config_filename = let toml_config = let open Confix.Config in - (if config_filename = "" then Path.with_file "config.toml" else Path.of_string config_filename) + (if config_filename = "" then Path.with_file ".logarion/config.toml" else Path.of_string config_filename) |> function Ok cfg -> Config.from_path cfg | Error str -> prerr_endline str; exit 1 in let config =