diff options
author | Christian Franke <nobody@nowhere.ws> | 2014-02-04 00:22:21 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2014-02-04 00:22:21 +0100 |
commit | 78e9d025cfcb958c484eef2074604f88fc52f983 (patch) | |
tree | d502679f97baea977ef5901c0fce30e3d2fa869a | |
parent | 1a4dd54c29d6d33231e9992dc9294fc3b2a70406 (diff) |
Update server settings
-rw-r--r-- | server.js | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -9,15 +9,15 @@ var app = express(); var cameras = [ { - baseurl: 'http://admin:123456@192.168.0.33', + baseurl: 'http://admin:123456@192.168.1.10', model: 'conceptronic' }, { - baseurl: 'http://admin:123456@192.168.0.117', + baseurl: 'http://admin:123456@192.168.1.11', model: 'conceptronic' }, { - url: 'http://admin:123456@192.168.0.178', + baseurl: 'http://admin:123456@192.168.1.12', model: 'conceptronic' } ]; @@ -32,7 +32,6 @@ function SimpleProxy(url) { self.url = url; self.handle_request = function(req, res) { - console.log('Got request. Forwarding to ' + self.url); request(self.url).pipe(res); }; } |