This may be a two to one question.
I have a Rails home / hobby application hosted on a Raspberry Pi and I was wondering if I could create a local SSL certificate for it and configure Rails to use it?
If so, how can I customize the Rails / Puma / Foreman / Ubuntu app? Right now I am running the application with Foreman using the Procfile file:
web: bundle exec puma -t 8:8 -p 3000
worker: bundle exec sidekiq
clock: bundle exec clockwork config/clock.rb
source
share