Port 443 kann auf neuer AWS EC2-Instanz nicht geöffnet werden

Port 443 kann auf neuer AWS EC2-Instanz nicht geöffnet werden

Ich habe eine neue EC2-Instanz erstellt. Dies ist das Setup:

Sicherheitsgruppe

Eingehende Regeln

Eingehende Regeln

IP-Version Typ Protokoll Portbereich Quelle
IPv4 HTTP TCP 80 0.0.0.0/0
IPv6 HTTPS TCP 443 ::/0
IPv6 HTTP TCP 80 ::/0
IPv4 SSH TCP 22 0.0.0.0/0
IPv4 HTTPS TCP 443 0.0.0.0/0

Outbound-Regeln

IP-Version Typ Protokoll Portbereich Quelle
IPv4 Der gesamte Verkehr Alle Alle 0.0.0.0/0

Netzwerk-ACL

Eingehende Regeln

Regelnummer Typ Protokoll Portbereich Quelle Zulassen/Ablehnen
100 Der gesamte Verkehr Alle Alle 0.0.0.0/0 Erlauben

Ausgangsregeln

Regelnummer Typ Protokoll Portbereich Quelle Zulassen/Ablehnen
100 Der gesamte Verkehr Alle Alle 0.0.0.0/0 Erlauben

Ich kann per SSH auf die Instanz zugreifen

Ich habe einen Docker-Container, der die Ports 80 und 443 überwacht

Ich kann meine Dienste per http erreichen, per https jedoch nicht

Hier sind die Befehle, die ich innerhalb der EC2-Instanz ausführe, um zu diagnostizieren

$ netstat -lntu
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp6 0 0 :::443 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
$ sudo lsof -i            
COMMAND      PID            USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
systemd-n    458 systemd-network   19u  IPv4 787779      0t0  UDP ip-172-31-61-243.us-west-2.compute.internal:bootpc 
systemd-r    461 systemd-resolve   12u  IPv4  18575      0t0  UDP localhost:domain 
systemd-r    461 systemd-resolve   13u  IPv4  18576      0t0  TCP localhost:domain (LISTEN)
sshd         729            root    3u  IPv4  22237      0t0  TCP *:ssh (LISTEN)
sshd         729            root    4u  IPv6  22248      0t0  TCP *:ssh (LISTEN)
docker-pr    935            root    4u  IPv4  24209      0t0  TCP *:https (LISTEN)
docker-pr    946            root    4u  IPv6  23196      0t0  TCP *:https (LISTEN)
docker-pr    958            root    4u  IPv4  24260      0t0  TCP *:http (LISTEN)
docker-pr    965            root    4u  IPv6  24266      0t0  TCP *:http (LISTEN)
docker-pr  48173            root    4u  IPv4 118713      0t0  TCP *:mysql (LISTEN)
docker-pr  48178            root    4u  IPv6 118719      0t0  TCP *:mysql (LISTEN)

KEINE FIREWALLS in meinem Fall

$ sudo service ufw status
● ufw.service - Uncomplicated firewall
     Loaded: loaded (/lib/systemd/system/ufw.service; enabled; vendor preset: enabled)
     Active: inactive (dead) since Mon 2021-08-02 16:53:17 UTC; 53min ago

$ sudo service iptables status
Unit iptables.service could not be found.

$ sudo service firewalld status
Unit firewalld.service could not be found.

Und von meinem lokalen Computer

$ nmap -p 443,22,80 44.234.254.49
Starting Nmap 7.80 ( https://nmap.org ) at 2021-08-02 14:31 CDT
Nmap scan report for ec2-44-234-254-49.us-west-2.compute.amazonaws.com (44.234.254.49)
Host is up (0.099s latency).

PORT    STATE  SERVICE
22/tcp  open   ssh
80/tcp  open   http
443/tcp closed https

$ nc -zv <dns>.us-west-2.compute.amazonaws.com 443
nc: connect to <dns>.us-west-2.compute.amazonaws.com port 443 (tcp) failed: Connection refused 

Irgendwelche Vorschläge? Ich kann die von Ihnen vorgeschlagenen Befehle zur Diagnose ausführen

verwandte Informationen