aws-samples / orthanc-cdk-deployment

MIT No Attribution
25 stars 7 forks source link

SSL #8

Closed yubarajshrestha closed 1 year ago

yubarajshrestha commented 1 year ago

Hi @santatamas ,

If I want to enable SSL then I know the Orthan configuration for DicomWeb which will look something like the below:

{
    "DicomWeb": {
        ...,
        "Ssl": true,
    }
}

How can this be done in our stack? Should I create dicomweb.json config inside /usr/share/orthanc or is there any other way?

yubarajshrestha commented 1 year ago

Adding ssl: true in orthanc config did the work.

let orthanConfig = {
   ...
   ssl: true
}