CommandBox 3.8 and SSL on Windows 10

I am trying to run CommandBox 3.8 (I updated to latest today) on Windows 10.

When I start the server with SSL enabled and try to navigate to a page on port 1443 I see the following in my browser

Here is my server.json file

{

“name”:“Redacted”,

“app”:{

“cfengine”:“adobe@11”

},

“web”:{

“webroot”:“wwwroot”,

“http”:{

“port”:“8081”,

“enable”:false

},

“aliases”:{

“images”:“C:/Sites/redacted/images”

},

“SSL”:{

“enable”:true

}

},

“JVM”:{

“heapSize”:“1024”

},

“trayOptions”:[

{

“label”:“Redacted”

}

]

}

Am I missing something?

Scott, I don’t see port 1443 defined as web.SSL.port in your server.json provided. You will need to specify that as the port.

BTW, if you want to use SSL with an Adobe engine, you will need to add the following JVM arguments to your server.json file:

“jvm” : {

“args” : “-Dcom.sun.net.ssl.enableECC=false”

}

There is a known issue with the Elliptic Curve cryptography, which will prevent your browser from serving the page. Disabling prevents the browser from blocking the request.

BTW, if you want to use SSL with an Adobe engine, you will need to add the following JVM arguments to your server.json file:

“jvm” : {

“args” : “-Dcom.sun.net.ssl.enableECC=false”

}

There is a known issue with the Elliptic Curve cryptography, which will prevent your browser from serving the page. Disabling prevents the browser from blocking the request.

That was it. Thank you!