#!/bin/sh

# apache
sudo dnf install -y httpd mod_ssl
sudo systemctl enable --now httpd

sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload
