Amazon Linux EC2 Nginx Https - SSL

Selamlar,
Her zaman kurduğum Amazon Linux’ta nginx kurdum. SSL https çalıştıramadım bir yerde hata yapıyorum. Tek başıma bulamadım. Yardımcı olabilir misiniz?
SecurityGroups inbound https açık.

https://ec2-63-33-214-30.eu-west-1.compute.amazonaws.com/
http://ec2-63-33-214-30.eu-west-1.compute.amazonaws.com/ > çalışıyor.

telnet ec2-63-33-214-30.eu-west-1.compute.amazonaws.com 443 > portu dinleyen yok.

/etc/nginx/snippets/self-signed.conf

ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;

/etc/nginx/snippets/ssl-params.conf

ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparam.pem;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
ssl_ecdh_curve secp384r1; # Requires nginx >= 1.1.0
ssl_session_timeout  10m;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off; # Requires nginx >= 1.5.9
ssl_stapling on; # Requires nginx >= 1.3.7
ssl_stapling_verify on; # Requires nginx => 1.3.7
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 5s;
# Disable strict transport security for now. You can uncomment the following
# line if you understand the implications.
# add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload";
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";

/etc/nginx/sites-available/default

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    include snippets/self-signed.conf;
    include snippets/ssl-params.conf;

    server_name localhost;

    root /var/www/html;
    index index.html index.htm index.nginx-debian.html;

    . . .
}
server {
    listen 80;
    listen [::]:80;

    server_name localhost

    return 302 https://$server_name$request_uri;
}

öncelikle makineye bağlanıp curl ile local’den bağlantı kurmayı dener misiniz? burada hata alıyor musunuz?
curl https://127.0.0.1 dediğinizde ne cevap dönüyor?