Skip to content

v1.0.1

Compare
Choose a tag to compare
@evantahler evantahler released this 07 Jul 00:49
· 5082 commits to main since this release

** SSL / HTTPS web server **

Details

  • You can now spin up a secure https server along with you http server in action hero. It will work exactly the same as the http server, and you can have both on at the same time with no overhead.
    • There are new configuration settings in config.json for this below

Settings for https server:

"secureWebServer" : {
"port": 4443,
"enable": true,
"keyFile": "./certs/server-key.pem",
"certFile": "./certs/server-cert.pem"
},