From 66b7961d40aa35054aad503f25cc0a0e77dc5a43 Mon Sep 17 00:00:00 2001 From: Zachary Carter <zack.carter@gmail.com> Date: Tue, 22 May 2012 15:40:48 -0700 Subject: [PATCH] Use port 10002 for router; 10007 for browserid --- config/local.json | 4 ++-- scripts/run_locally.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/local.json b/config/local.json index 0c89dc8f1..6d346f58d 100644 --- a/config/local.json +++ b/config/local.json @@ -3,8 +3,8 @@ "keysigner": { "bind_to": { "port": 10003 } }, "dbwriter": { "bind_to": { "port": 10004 } }, "proxy": { "bind_to": { "port": 10006 } }, - "browserid": { "bind_to": { "port": 10002 } }, - "router": { "bind_to": { "port": 10007 } }, + "browserid": { "bind_to": { "port": 10007 } }, + "router": { "bind_to": { "port": 10002 } }, "use_minified_resources": false, "database": { "driver": "json" diff --git a/scripts/run_locally.js b/scripts/run_locally.js index 0d7f2adbb..13a59a531 100755 --- a/scripts/run_locally.js +++ b/scripts/run_locally.js @@ -51,10 +51,10 @@ process.env['LOG_TO_CONSOLE'] = 1; // all spawned processes will communicate with the local browserid process.env['DBWRITER_URL'] = 'http://' + HOST + ":10004"; -process.env['BROWSERID_URL'] = 'http://' + HOST + ":10002"; +process.env['BROWSERID_URL'] = 'http://' + HOST + ":10007"; process.env['VERIFIER_URL'] = 'http://' + HOST + ":10000/verify"; process.env['KEYSIGNER_URL'] = 'http://' + HOST + ":10003"; -process.env['ROUTER_URL'] = 'http://' + HOST + ":10007"; +process.env['ROUTER_URL'] = 'http://' + HOST + ":10002"; process.env['URL'] = process.env['ROUTER_URL']; -- GitLab