Skip to main content
Skip table of contents

Configure the Firewall

  1. Enable and start firewalld

    CODE
    systemctl enable firewalld
    systemctl start firewalld


  2. Allow SSH (22)

    CODE
     firewall-cmd --zone=public --add-service=ssh --permanent


  3. Allow http (80)

    CODE
     firewall-cmd --zone=public --add-service=http --permanent


  4. Allow https (443)

    CODE
    firewall-cmd --zone=public --add-service=https --permanent


  5. Allow smtp (25)

    CODE
    firewall-cmd --zone=public --add-service=smtp --permanent


  6. Optionally allow MySQL

    CODE
    firewall-cmd --zone=public --add-port=3306/tcp --permanent


  7. Reload the firewall configuration

    CODE
    firewall-cmd --reload


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.