HTTPS over port 443

fugee ohu fugee279 at gmail.com
Wed Aug 8 22:58:29 UTC 2018


server {
   listen 80;
   listen [::]:80;
   return 301 https://$host$request_uri;
   ssl_certificate /etc/ssl/certs/sitename/certificate.crt;
   ssl_certificate_key /etc/ssl/certs/sitename/private.key;
   server_name *.sitename.com www.sitename.com sitename.co$
   charset utf-8;
   location / {
   root /usr/home/fugee/websites/sitename/public;
   rails_env production;
#   passenger_enabled on;
    }
   }

On Wed, Aug 8, 2018 at 3:17 AM, Francis Daly <francis at daoine.org> wrote:
> On Tue, Aug 07, 2018 at 07:20:58PM -0400, fugee ohu wrote:
>> I don't think there's rails passenger settings Adding passenger to the
>> Gemfile only causes the app to use passenger in development mode
>> instead of the default (presently puma)
>
> Ok.
>
> What is the output of
>
>   curl -v https://www.sitename.com
>
>         f
> --
> Francis Daly        francis at daoine.org
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx


More information about the nginx mailing list