aaP_mdestafadilah_simrs
Hello, the system firewall and the server provider's firewall need to open port 80/443
The server provider needs to set open ports in their admin website.
The system firewall can be opened with the following command:
firewall-cmd --permanent --zone=public --add-port=80/tcp > /dev/null 2>&1
firewall-cmd --permanent --zone=public --add-port=443/tcp > /dev/null 2>&1
firewall-cmd --reload
ufw allow 80/tcp
ufw allow 443/tcp
ufw reload