From b9610c975ff7bdb293bcc4266c6fe14f53fae04d Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Sat, 28 Sep 2019 18:55:07 +0100 Subject: [PATCH] added localhost backfiller option --- docker-compose.jsonnet | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.jsonnet b/docker-compose.jsonnet index 0f3c71f..c29f29a 100644 --- a/docker-compose.jsonnet +++ b/docker-compose.jsonnet @@ -62,6 +62,7 @@ peers:: [ ], + localhost:: "http://example.com", // the name or URL of this node as it appears in the nodes table of the database authentication:: true, // set to false to disable auth in thrimshim thrimbletrimmer:: true, // set to false to not have nginx serve thrimbletrimmer pages. @@ -153,6 +154,7 @@ "--static-nodes", std.join(",", $.peers), "--backdoor-port", std.toString($.backdoor_port), "--node-database", $.db_connect, + "--localhost", $.localhost ], // Mount the segments directory at /mnt volumes: ["%s:/mnt" % $.segments_path],