For HTTPS you can use your own certificates, to do so on Windows you have to head to the directory C:\ProgramData\mySCADA9\conf
And edit ssl.conf file – via. notepad or any preferred editor here there is a path to certificates
ssl_certificate /etc/myscada/server.crt;
ssl_certificate_key /etc/myscada/server.key;
By default the container has mounted C:\ProgramData\mySCADA9\conf as /etc/myscada and you have to put there “docker” pathing as the docker doesn’t “know” the windows directories path
So the /etc = /conf/myscada
So, if you put the server crt and key into that directory, you have to specify the path as above.
You can basically use the above example and just rename your certs into the server.crt and server.key and copy the files into it, after restarting the container (Turn off/on) it should take these certificates.