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.

Navigation
Home
home server-setup

Web Servers

How to Set Up a LEMP Stack (Nginx, MySQL, PHP)

How to Set Up a LEMP Stack (Linux, Nginx, MySQL, PHP) # Install all components apt update && apt upgrade -y apt install nginx mysql-server php-fpm php-mysql php-cli php-curl php-xml php-mbstring -y # Start services systemctl start nginx mysql php*-fpm systemctl enable nginx mysql php*-fpm # Secure…

How to Set Up a LAMP Stack (Apache, MySQL, PHP)

How to Set Up a LAMP Stack (Linux, Apache, MySQL, PHP) apt update && apt upgrade -y apt install apache2 mysql-server php libapache2-mod-php php-mysql php-cli php-curl php-xml php-mbstring -y systemctl start apache2 mysql systemctl enable apache2 mysql mysql_secure_installation Apache handles PHP…

How to Add a Domain and SSL Certificate

How to Add a Domain and SSL Certificate Point your domain's A record to your server's IP address at your DNS provider. Install Certbot for free SSL certificates: # Ubuntu/Debian apt install certbot python3-certbot-nginx -y # CentOS/AlmaLinux dnf install certbot python3-certbot-nginx -y Obtain and…

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 /…

How to Set Up Nginx Web Server

How to Set Up Nginx Web Server Ubuntu / Debian Connect to your server via SSH Terminal or your local SSH client. Update packages and install Nginx: apt update && apt upgrade -y apt install nginx -y Start and enable Nginx to run on boot: systemctl start nginx systemctl enable nginx Verify Nginx is…