2024年5月10日 星期五

Rocky Linux 9 安裝 WordPress

Reference:
 
#安裝 apache httpd
dnf install httpd -y
systemctl enable httpd
systemctl start httpd
 
#設定防火牆
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload