From b7a0440109553f4697dc88c26e3923be1c2b5f07 Mon Sep 17 00:00:00 2001 From: dannyrb Date: Sun, 19 May 2019 15:36:14 -0400 Subject: [PATCH] Remove old configuration files --- conf/conf.d/default.conf | 12 ------ config/ClearCanvasDIMSE.json | 38 ----------------- config/ccc.js | 36 ---------------- config/dcm4chee-dicomweb-clientonly.json | 37 ---------------- config/dcm4cheeDICOMWeb.json | 54 ------------------------ config/dcm4cheeDIMSE.json | 54 ------------------------ config/local_dcm4chee.js | 19 --------- config/local_orthanc.js | 21 --------- config/medkenOrthanc.json | 51 ---------------------- config/orthancDICOMWeb.json | 37 ---------------- config/orthancDIMSE.json | 43 ------------------- config/osirixDIMSE.json | 42 ------------------ config/publicOrthancDICOMWeb.json | 37 ---------------- config/public_dicomweb.js | 18 -------- 14 files changed, 499 deletions(-) delete mode 100644 conf/conf.d/default.conf delete mode 100644 config/ClearCanvasDIMSE.json delete mode 100644 config/ccc.js delete mode 100644 config/dcm4chee-dicomweb-clientonly.json delete mode 100644 config/dcm4cheeDICOMWeb.json delete mode 100644 config/dcm4cheeDIMSE.json delete mode 100644 config/local_dcm4chee.js delete mode 100644 config/local_orthanc.js delete mode 100644 config/medkenOrthanc.json delete mode 100644 config/orthancDICOMWeb.json delete mode 100644 config/orthancDIMSE.json delete mode 100644 config/osirixDIMSE.json delete mode 100644 config/publicOrthancDICOMWeb.json delete mode 100644 config/public_dicomweb.js diff --git a/conf/conf.d/default.conf b/conf/conf.d/default.conf deleted file mode 100644 index c6a436aa1..000000000 --- a/conf/conf.d/default.conf +++ /dev/null @@ -1,12 +0,0 @@ -server { - listen 80; - location / { - root /usr/share/nginx/html; - index index.html index.htm; - try_files $uri $uri/ /index.html; - } - error_page 500 502 503 504 /50x.html; - location = /50x.html { - root /usr/share/nginx/html; - } -} \ No newline at end of file diff --git a/config/ClearCanvasDIMSE.json b/config/ClearCanvasDIMSE.json deleted file mode 100644 index 4248416b5..000000000 --- a/config/ClearCanvasDIMSE.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "servers": { - "dimse": [{ - "name": "SPRITE PACS", - "wadoUriRoot": "http://localhost:1000/wado/CT", - "requestOptions": { - "logRequests": true, - "logResponses": true, - "logTiming": true - }, - "peers": [ - { - "host": "localhost", - "port": 108, - "aeTitle": "CT", - "default": true, - "supportsInstanceRetrievalByStudyUid": false - }, - { - "host": "0.0.0.0", - "port": 104, - "aeTitle": "OHIFDCM", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dimse", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "studyListDateFilterNumDays": 1 - } - } -} diff --git a/config/ccc.js b/config/ccc.js deleted file mode 100644 index a8766db8c..000000000 --- a/config/ccc.js +++ /dev/null @@ -1,36 +0,0 @@ -dicomWebServers = { - servers: { - dicomWeb: [ - { - name: "DCM4CHEE", - wadoUriRoot: - "https://cancer.crowds-cure.org/dcm4chee-arc/aets/DCM4CHEE/wado", - qidoRoot: - "https://cancer.crowds-cure.org/dcm4chee-arc/aets/DCM4CHEE/rs", - wadoRoot: - "https://cancer.crowds-cure.org/dcm4chee-arc/aets/DCM4CHEE/rs", - qidoSupportsIncludeField: true, - imageRendering: "wadors", - thumbnailRendering: "wadors", - requestOptions: { - requestFromBrowser: true - } - } - ] - }, - oidc: [ - { - authServerUrl: "https://cancer.crowds-cure.org/auth/realms/dcm4che", - authRedirectUri: "http://localhost:5000/callback", - clientId: "crowds-cure-cancer", - postLogoutRedirectUri: "http://localhost:5000/logout-redirect.html", - responseType: "id_token token", - scope: "email profile openid", - revokeAccessTokenOnSignout: true, - extraQueryParams: { - kc_idp_hint: "crowds-cure-cancer-auth0-oidc", - client_id: "crowds-cure-cancer" - } - } - ] -} diff --git a/config/dcm4chee-dicomweb-clientonly.json b/config/dcm4chee-dicomweb-clientonly.json deleted file mode 100644 index 1ee67a179..000000000 --- a/config/dcm4chee-dicomweb-clientonly.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "public": { - "clientOnly": true, - "ui": { - "studyListFunctionsEnabled": true, - "studyListDateFilterNumDays": 10000 - }, - "servers": { - "dicomWeb": [ - { - "name": "Orthanc", - "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - "qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "qidoSupportsIncludeField": true, - "imageRendering": "wadors", - "thumbnailRendering": "wadors", - "requestOptions": { - "requestFromBrowser": true, - "logRequests": true, - "logResponses": false, - "logTiming": true, - "auth": "admin:admin" - } - }] - }, - "custom": { - "oidc": [{ - "authServerUrl": "https://cancer.crowds-cure.org/auth/realms/dcm4che", - "authRedirectUri": "/studylist", - "postLogoutRedirectUri": "/", - "clientId": "ohif-viewer" - }] - }, - "userAuthenticationRoutesEnabled": false - } -} diff --git a/config/dcm4cheeDICOMWeb.json b/config/dcm4cheeDICOMWeb.json deleted file mode 100644 index 70cfdf39c..000000000 --- a/config/dcm4cheeDICOMWeb.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "servers": { - "dicomWeb": [ - { - "name": "DCM4CHEE", - "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - "qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "qidoSupportsIncludeField": false, - "imageRendering": "wadouri", - "thumbnailRendering": "wadors", - "requestOptions": { - "auth": "admin:admin", - "logRequests": true, - "logResponses": false, - "logTiming": true - } - }], - "dimse": [{ - "name": "DCM4CHEE_DIMSE", - "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - "requestOptions": { - "auth": "admin:admin", - "logRequests": true, - "logResponses": false, - "logTiming": true - }, - "peers": [ - { - "host": "localhost", - "port": 4242, - "aeTitle": "DCM4CHEE", - "default": true, - "supportsInstanceRetrievalByStudyUid": false - }, - { - "host": "0.0.0.0", - "port": 11112, - "aeTitle": "DCM4CHEE", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dicomWeb", - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "studyListDateFilterNumDays": 1 - } - } -} diff --git a/config/dcm4cheeDIMSE.json b/config/dcm4cheeDIMSE.json deleted file mode 100644 index 1799231da..000000000 --- a/config/dcm4cheeDIMSE.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "servers": { - "dicomWeb": [ - { - "name": "DCM4CHEE", - "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - "qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - "qidoSupportsIncludeField": false, - "imageRendering": "wadouri", - "requestOptions": { - "auth": "admin:admin", - "logRequests": true, - "logResponses": false, - "logTiming": true - } - }], - "dimse": [{ - "name": "DCM4CHEE_DIMSE", - "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - "requestOptions": { - "auth": "admin:admin", - "logRequests": true, - "logResponses": false, - "logTiming": true - }, - "peers": [ - { - "host": "localhost", - "port": 4242, - "aeTitle": "DCM4CHEE", - "default": true, - "supportsInstanceRetrievalByStudyUid": false - }, - { - "host": "0.0.0.0", - "port": 11112, - "aeTitle": "DCM4CHEE", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dimse", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "studyListDateFilterNumDays": 1 - } - } -} diff --git a/config/local_dcm4chee.js b/config/local_dcm4chee.js deleted file mode 100644 index b4d887fc3..000000000 --- a/config/local_dcm4chee.js +++ /dev/null @@ -1,19 +0,0 @@ -dicomWebServers = { - servers: { - dicomWeb: [ - { - name: "DCM4CHEE", - wadoUriRoot: "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado", - qidoRoot: "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - wadoRoot: "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs", - qidoSupportsIncludeField: true, - imageRendering: "wadors", - thumbnailRendering: "wadors", - requestOptions: { - requestFromBrowser: true, - auth: "admin:admin" - } - } - ] - } -} diff --git a/config/local_orthanc.js b/config/local_orthanc.js deleted file mode 100644 index 2aacadfd5..000000000 --- a/config/local_orthanc.js +++ /dev/null @@ -1,21 +0,0 @@ -dicomWebServers = { - servers: { - dicomWeb: [ - { - name: "Orthanc", - wadoUriRoot: "http://localhost:8899/wado", - qidoRoot: "http://localhost:8899/dicom-web", - wadoRoot: "http://localhost:8899/dicom-web", - qidoSupportsIncludeField: false, - imageRendering: "wadors", - thumbnailRendering: "wadors", - requestOptions: { - auth: "orthanc:orthanc", - logRequests: true, - logResponses: false, - logTiming: true - } - } - ] - } -} diff --git a/config/medkenOrthanc.json b/config/medkenOrthanc.json deleted file mode 100644 index 5da0baccf..000000000 --- a/config/medkenOrthanc.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "servers": { - "dicomWeb": [ - { - "name": "Medken Orthanc", - "wadoUriRoot": "http://dicom-orthanc.medken.com/wado", - "qidoRoot": "http://dicom-orthanc.medken.com/dicom-web", - "wadoRoot": "http://dicom-orthanc.medken.com/dicom-web", - "qidoSupportsIncludeField": false, - "imageRendering": "wadouri", - "requestOptions": { - "logRequests": false, - "logResponses": false, - "logTiming": true - } - } - ], - "dimse" : [{ - "name": "ORTHANC_DIMSE", - "wadoUriRoot": "http://dicom-orthanc.medken.com/wado", - "peers": [ - { - "host": "208.100.41.100", - "port": 4242, - "aeTitle": "MKORTHANC", - "default": true - }, - { - "host": "0.0.0.0", - "port": 11119, - "aeTitle": "OHIFDCM", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dimse", - "medkenpanel" : { - "prefix" : "admin" - }, - "fhir" : { - "host" : "localhost", - "port" : 3937 - }, - "public": { - "ui": { - "studyListDateFilterNumDays": 1 - } - } -} diff --git a/config/orthancDICOMWeb.json b/config/orthancDICOMWeb.json deleted file mode 100644 index 5b899835d..000000000 --- a/config/orthancDICOMWeb.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "servers": { - "dicomWeb": [ - { - "name": "Orthanc", - "wadoUriRoot": "http://localhost:8042/wado", - "qidoRoot": "http://localhost:8042/dicom-web", - "wadoRoot": "http://localhost:8042/dicom-web", - "qidoSupportsIncludeField": true, - "imageRendering": "wadouri", - "thumbnailRendering": "wadouri", - "requestOptions": { - "auth": "orthanc:orthanc", - "logRequests": true, - "logResponses": false, - "logTiming": true - } - } - ] - }, - "defaultServiceType": "dicomWeb", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "leftSidebarOpen": false, - "displaySetNavigationLoopOverSeries": false, - "displaySetNavigationMultipleViewports": true, - "autoPositionMeasurementsTextCallOuts": "TRLB", - "studyListDateFilterNumDays": 1 - } - }, - "proxy": { - "enabled": true - } -} diff --git a/config/orthancDIMSE.json b/config/orthancDIMSE.json deleted file mode 100644 index 7f77cbcd6..000000000 --- a/config/orthancDIMSE.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "servers": { - "dimse": [{ - "name": "ORTHANC_DIMSE", - "wadoUriRoot": "http://localhost:8042/wado", - "requestOptions": { - "auth": "orthanc:orthanc", - "logRequests": true, - "logResponses": false, - "logTiming": true - }, - "peers": [ - { - "host": "localhost", - "port": 4242, - "aeTitle": "ORTHANC", - "default": true, - "server": false - }, - { - "host": "0.0.0.0", - "port": 11112, - "aeTitle": "OHIFDCM", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dimse", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "leftSidebarOpen": false, - "displaySetNavigationLoopOverSeries": false, - "displaySetNavigationMultipleViewports": true, - "autoPositionMeasurementsTextCallOuts": "TRLB", - "studyListDateFilterNumDays": 10000 - } - } -} diff --git a/config/osirixDIMSE.json b/config/osirixDIMSE.json deleted file mode 100644 index a99659082..000000000 --- a/config/osirixDIMSE.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "servers": { - "dimse": [{ - "name": "OSIRIX_DIMSE", - "wadoUriRoot": "http://localhost:3333/wado", - "requestOptions": { - "logRequests": true, - "logResponses": false, - "logTiming": true - }, - "peers": [ - { - "host": "localhost", - "port": 11112, - "aeTitle": "OSIRIX", - "default": true, - "server": false - }, - { - "host": "0.0.0.0", - "port": 4242, - "aeTitle": "OHIFDCM", - "default": true, - "server": true - } - ] - }] - }, - "defaultServiceType": "dimse", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "leftSidebarOpen": false, - "displaySetNavigationLoopOverSeries": false, - "displaySetNavigationMultipleViewports": true, - "autoPositionMeasurementsTextCallOuts": "TRLB", - "studyListDateFilterNumDays": 1 - } - } -} diff --git a/config/publicOrthancDICOMWeb.json b/config/publicOrthancDICOMWeb.json deleted file mode 100644 index c187fdad1..000000000 --- a/config/publicOrthancDICOMWeb.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "servers": { - "dicomWeb": [ - { - "name": "Orthanc", - "wadoUriRoot": "http://dicomweb.ohif.org/wado", - "qidoRoot": "http://dicomweb.ohif.org/dicom-web", - "wadoRoot": "http://dicomweb.ohif.org/dicom-web", - "qidoSupportsIncludeField": false, - "imageRendering": "wadouri", - "thumbnailRendering": "wadouri", - "requestOptions": { - "auth": "orthanc:orthanc", - "logRequests": true, - "logResponses": false, - "logTiming": true - } - } - ] - }, - "defaultServiceType": "dicomWeb", - "dropCollections": true, - "public": { - "verifyEmail": false, - "ui": { - "studyListFunctionsEnabled": true, - "leftSidebarOpen": false, - "displaySetNavigationLoopOverSeries": false, - "displaySetNavigationMultipleViewports": true, - "autoPositionMeasurementsTextCallOuts": "TRLB", - "studyListDateFilterNumDays": 1 - } - }, - "proxy": { - "enabled": true - } -} diff --git a/config/public_dicomweb.js b/config/public_dicomweb.js deleted file mode 100644 index 4bde53033..000000000 --- a/config/public_dicomweb.js +++ /dev/null @@ -1,18 +0,0 @@ -dicomWebServers = { - servers: { - dicomWeb: [ - { - name: "DCM4CHEE", - wadoUriRoot: "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/wado", - qidoRoot: "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs", - wadoRoot: "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs", - qidoSupportsIncludeField: true, - imageRendering: "wadors", - thumbnailRendering: "wadors", - requestOptions: { - requestFromBrowser: true - } - } - ] - } -};