LIVE NOW
DartDay - 24 Hours of Blow Out Deals!
00d : 00h : 00m : 00s
Go To the Event

Knowledge Base

Find detailed guides, step-by-step tutorials, and FAQs to help you get the most from your DartNode services.

home web-servers server-setup

How to Set Up Apache Web Server

How to Set Up Apache Web Server

Ubuntu / Debian

apt update && apt upgrade -y
apt install apache2 -y
systemctl start apache2
systemctl enable apache2
ufw allow 'Apache Full'
ufw enable

Visit http://YOUR_SERVER_IP to see the Apache default page. Place website files in /var/www/html/.

CentOS / AlmaLinux / Rocky Linux

dnf install httpd -y
systemctl start httpd
systemctl enable httpd
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
firewall-cmd --reload