How to ...
You get HTTPS for free and forever just by usingCaddy:
{http_port80https_port443}asouldocs.dev {reverse_proxy* localhost:5555}
Here is an example of NGINX config section, but values can be different based on your situation:
server {listen80;server_nameasouldocs.dev;location/ {proxy_passhttp://localhost:5555; }}