I only found how to start puma using SSL:
$ puma -b \'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert\'
However, there is no descri
while we are using combo Nginx+PhusionPassenger as well. You cant specify Chain cert file in nginx either. The trick is to bundle all certs within one certificate and then set the new certificate file as a certificate in your server configuration. You will find more information in nginx documentation. Check SLL Certificate Chains section.
cat www.example.com.crt bundle.crt > www.example.com.chained.crt
Hope it helped.