From ce23852583e59b3274228bd6535a68e9a1ba05b5 Mon Sep 17 00:00:00 2001 From: DanB Date: Sat, 12 Nov 2016 11:27:44 +0100 Subject: [PATCH] Small config fix --- config/config_defaults.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/config_defaults.go b/config/config_defaults.go index 2db7d04f4..f1b64c32a 100644 --- a/config/config_defaults.go +++ b/config/config_defaults.go @@ -73,10 +73,10 @@ const CGRATES_CFG_JSON = ` "http": { // HTTP server configuration - "json_rpc_url": "/jsonrpc" // JSON RPC relative URL ("" to disable) - "ws_url": "/ws", // WebSockets relative URL ("" to disable) - "use_basic_auth": false, // use basic authentication - "auth_users": {} // basic authentication usernames and base64-encoded passwords (eg: { "username1": "cGFzc3dvcmQ=", "username2": "cGFzc3dvcmQy "}) + "json_rpc_url": "/jsonrpc", // JSON RPC relative URL ("" to disable) + "ws_url": "/ws", // WebSockets relative URL ("" to disable) + "use_basic_auth": false, // use basic authentication + "auth_users": {} // basic authentication usernames and base64-encoded passwords (eg: { "username1": "cGFzc3dvcmQ=", "username2": "cGFzc3dvcmQy "}) },