Fix settings for localhost standalone Orthanc

This commit is contained in:
Erik Ziegler 2016-05-10 21:57:10 +02:00
parent 574dc26b36
commit 4d19ee9b96
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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