Muneeb Ahmad Farooqi

Joined

50 Experience
0 Lessons Completed
0 Questions Solved

Activity

Posted in SSL issue with nginx

Hi everyone, i have followed this tutorial and got stuck 
https://gorails.com/guides/free-ssl-with-rails-and-nginx-using-let-s-encrypt
i enabled the option to redirect on https. and now when i'm trying to hit my website with https it seems server is nt responding. these are my nginx configuration. please check and help me to sort out the problem. Thanks 

```
server {
        
        listen 443 ssl;

        ssl_certificate /etc/letsencrypt/live/123crawlers.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/123crawlers.com/privkey.pem;

        ssl_session_timeout 5m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
        ssl_prefer_server_ciphers on;
        ssl_session_cache shared:SSL:10m;
        
         
        server_name www.123crawlers.com 123crawlers.com;
        passenger_enabled on;
        rails_env    production;
        root         /home/ubuntu/rails-projects/123crawler/master/123crawler-landingpage/public;

        # redirect server error pages to the static page /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

}

```