Today we will update the hypernode-ssl-config-generator so that it generates Nginx server definitions without a www. prefix in the server name. This additional server_name was unneeded because dehydrated only creates certificates for the domain you specified, not automatically also a www. domain.

A new config will automatically be generated the next time you run dehydrated -c again. If you want to re-generate your config right now manually you can do so by running hypernode-ssl-config-generator.

Old behavior:

server_name appname.hypernode.io www.appname.hypernode.io;

New behavior:

server_name appname.hypernode.io;

We will be deploying this release later today.

For more information on how to use Let’s Encrypt on Hypernode see this article.