I have a Sinatra web app that serves up fine on http on k8s. I want to serve it out with a cert (self signed?) on an internal network. What are the general steps. I use rack...
So far I have
require 'rack/ssl-enforcer'
use Rack::SslEnforcer
As you can see I am hazy about points 2 and 3 and possibly more. Anybody exposed a Sinatra app on https on k8s? Is this all the wiring needed?
Thanks.