huedaya.com/blog
just bunch of .md files
How to Force SSL in Dokku

All you need to do simply enable port 80, you can use this command:

plaintext
dokku ports:add my-app https:443:8080
dokku ports:add my-app http:80:8080

If you debug with dokku ports:report my-app it should showing result like this:

plaintext
=====> my-app ports information
       Ports map:                     http:80:8080 https:443:8080
       Ports map detected:            http:80:5000 https:443:5000

The port 5000 seems generated automatically and cannot be deleted. That's it!

Last update: 2024-02-29 13:14:55 UTC (4 months ago)