New site doesn't load
The domain is set up correctly, as I can ping it from my laptop.
The final troubleshooting advice is to check iptables to see if it is blocking ports 80 and 443. It shows that there should be ACCEPT entries for tcp for both these ports to allow them. When I run iptables -L I don't see these entries:
0 0 ACCEPT tcp – * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:443
This may be the culprit but I don't know how to add these. I am surprised that fail2ban did not include them. Perhaps I missed that in the configuration.
I would appreciate any advice on how to fix this or a pointer to some documentation that would tell me how.
1 Reply
From the command line I entered:
sudo ufw allow 80/tcp
This added the line to iptables that allows http access.