lookup configuration rpc path by default

This commit is contained in:
hamza zia 2016-03-04 11:01:26 -08:00
parent 9c7a726347
commit f4fa6bf572

View File

@ -33,6 +33,12 @@ function(syscall, time, alerts, utils, rootScope, uri, authconf) {
port: uri.port(),
path: '/jsonrpc',
encrypt: ( uri.protocol() == 'https' )
},
{
host: uri.host(),
port: uri.port(),
path: authconf.path,
encrypt: ( uri.protocol() == 'https' )
});
console.log(configurations);
}