2019-05-13 19:14:08 +02:00
|
|
|
window.config = {
|
|
|
|
|
routerBasename: '/',
|
2019-07-08 21:29:59 +02:00
|
|
|
showStudyList: true,
|
2019-05-13 19:14:08 +02:00
|
|
|
servers: {
|
|
|
|
|
// This is an array, but we'll only use the first entry for now
|
|
|
|
|
dicomWeb: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Orthanc',
|
|
|
|
|
wadoUriRoot: 'http://127.0.0.1/pacs/wado',
|
|
|
|
|
qidoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
|
|
|
wadoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
|
|
|
qidoSupportsIncludeField: false,
|
|
|
|
|
imageRendering: 'wadors',
|
|
|
|
|
thumbnailRendering: 'wadors',
|
2019-09-09 21:49:12 +02:00
|
|
|
// requestOptions: {
|
|
|
|
|
// undefined to use JWT + Bearer auth
|
|
|
|
|
// auth: 'orthanc:orthanc',
|
|
|
|
|
// },
|
2019-05-13 19:14:08 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2019-09-09 21:49:12 +02:00
|
|
|
};
|