I'm trying to configure both HTTP and HTTPS on thin. I have this configuration file:
environment: production
address: 0.0.0.0
port: 9292
chdir: /home/[user]/[mySinatraAPP]
pid: tmp/thin.pid
rackup: config.ru
log: server.log
max_conns: 1024
timeout: 30
max_persistent_conns: 512
daemonize: true
I activate the ssl option with:
thin -C thin.yaml start --ssl
But it only activates HTTPS and not HTTP. Any idea of the path I can follow?