From 2df3a262ef10fff54526b29de5cef5f75087b5ff Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Wed, 5 Feb 2020 12:11:51 +0000 Subject: [PATCH] Fixed errors in template causing loading errors --- sfw-provider/src/config/template.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sfw-provider/src/config/template.rs b/sfw-provider/src/config/template.rs index 0ffa09c318..cc95584167 100644 --- a/sfw-provider/src/config/template.rs +++ b/sfw-provider/src/config/template.rs @@ -26,6 +26,7 @@ nym_root_directory = "{{ provider.nym_root_directory }}" ##### Mixnet endpoint config options ##### +[mixnet_endpoint] # Socket address to which this service provider will bind to # and will be listening for sphinx packets coming from the mixnet. listening_address = "{{ mixnet_endpoint.listening_address }}" @@ -41,6 +42,7 @@ announce_address = "{{ mixnet_endpoint.announce_address }}" #### Clients endpoint config options ##### +[clients_endpoint] # Socket address to which this service provider will bind to # and will be listening for sphinx packets coming from the mixnet. listening_address = "{{ clients_endpoint.listening_address }}" @@ -58,7 +60,7 @@ inboxes_directory = "{{ clients_endpoint.inboxes_directory }}" # [TODO: implement its storage] Full path to a file containing mapping of # client addresses to their access tokens. -ledger_path = {{ clients_endpoint.ledger_path }}" +ledger_path = "{{ clients_endpoint.ledger_path }}" ##### logging configuration options #####