rhel9 – Can’t connect to Nginx/RHEL webserver on LAN
I have an nginx server just setup on a non-headless RHEL9 box.
I can access the website just fine with a browser on the RHEL box but not on any other machine on the LAN.
In the access log I can see localhost but no attempt by the other machines.
Here’s what I tried :
Table of Contents
Deactivating SELINUX :
I now have :
> getenforce
Disabled
Allowing http traffic in the firewall :
firewall-cmd --permanent --add-service=http
firewall-cmd --reload
I can see that in :
firewall-cmd --list-all
http is on the list of services
I also checked that my interface was in the public zone.
Ensuring the RHEL box was accessible :
It can be pinged by every machine on the LAN
Ensuring the server is actually listening :
I’m using “listen 80”, not listen “localhost:80” or something like that.
Thanks for any help.
Read more here: Source link
