Closed
Description
I saw the the v0.3.0 roadmap and it includes adding SSL/TLS support which is very important for production.
It will probably be not that hard to implement since Deno already has the serveTLS API to create https web servers.
However, instead of crowding the command line with more options, I think the some options like these should be used in the aleph.config.js
export default {
"ssl": true | false // default is false
"certFile": string // required if ssl == true
"keyFile": string // required if ssl == true
}
Should I try to implement it?