December 27, 2025 ~1 minute minutes read Admin

Getting Started

How to Install Bludit CMS on Ubuntu 24.04

Bludit is a fast, flat-file CMS.

Prerequisites: You will need an Ubuntu server.

1. Install PHP and Nginx


sudo apt update
sudo apt install nginx php-fpm -y

## 2. Configure Nginx

server {
    listen 80;
    server_name yourdomain.com;
    root /var/www/bludit;
}