Question
port 443 blocked?
Port 443 is open in iptables:
iptables -L -v
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
…
ACCEPT tcp – any any anywhere anywhere tcp dpt:https
But when I try to access the port by various means its rejected:
telnet localhost 443
Trying 127.0.0.1…
telnet: Unable to connect to remote host: Connection refused
Apache2 is running and has the 443 set up:
<VirtualHost *:443>
…
Is something blocking the port in front of my droplet?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×