diff --git a/config/localhostOrthanc.json b/config/localhostOrthanc.json index 9b31cd918..6bf39df37 100644 --- a/config/localhostOrthanc.json +++ b/config/localhostOrthanc.json @@ -4,7 +4,7 @@ { "name": "Orthanc", "wadoUriRootNOTE" : "either this uri is not correct for wado-uri or wado-uri is not configured on orthanc currently", - "wadoUriRoot" : "http://localhost:8042/wado", + "wadoUriRoot" : "http://localhost:8043/wado", "qidoRoot": "http://localhost:8042/dicom-web", "wadoRoot": "http://localhost:8042/dicom-web", "qidoSupportsIncludeField": false, diff --git a/etc/nodeCORSProxy.js b/etc/nodeCORSProxy.js index dc3b454e7..be7c16053 100644 --- a/etc/nodeCORSProxy.js +++ b/etc/nodeCORSProxy.js @@ -5,9 +5,9 @@ var http = require('http'), httpProxy = require('http-proxy'); var proxy = httpProxy.createProxyServer({ - target: 'http://192.168.99.100:8042', + target: 'http://localhost:8042', auth: 'orthanc:orthanc' -}).listen(8042); +}).listen(8043); proxy.on('proxyRes', function(proxyReq, req, res, options) { // add the CORS header to the response