Tag: infrastructure
-
Install and Configure a Self-Hosted RustDesk Server
Install RustDesk Server (Hbbs & Hbbr) RustDesk has two main components: Hbbs (ID Server) Hbbr (Relay Server) 🔹 On Ubuntu / Debian 1️⃣ Update your system: sudo apt update && sudo apt upgrade -y 2️⃣ Download RustDesk Server binaries: wget <https://github.com/rustdesk/rustdesk/releases/latest/download/rustdesk-server-linux-amd64.zip> 3️⃣ Extract the files: sudo apt install unzip -y unzip rustdesk-server-linux-amd64.zip cd rustdesk-server-linux-amd64 4️⃣…
-
How to Self-Host Passbolt (Using Docker)
This guide provides step-by-step instructions to install Docker correctly and deploy Passbolt using Docker Compose. 📌 Prerequisites ✅ A Linux Server (Ubuntu 24.04 recommended)✅ Minimum system requirements: 2 CPU cores, 2GB RAM✅ A domain name (e.g., passbolt.example.com)✅ An SSL certificate (Let’s Encrypt recommended) 📌 Step 1: Install Docker & Docker Compose (Ubuntu 24.04) Ubuntu 24.04…
-
Configuring Apache Web Server and Setting Up SSL Certificates Using Certbot
This guide will walk you through configuring an Apache web server and setting up SSL certificates using Certbot on an Ubuntu server. The process includes installing necessary packages, generating SSL certificates, and configuring Apache to serve your site securely. Prerequisites A server running Ubuntu with Apache installed. Basic knowledge of Linux command-line operations. Administrative (root…
-
FreeRADIUS with MySQL Setup Guide
This guide will walk you through setting up FreeRADIUS with MySQL on an Ubuntu server. You’ll install necessary packages, configure MySQL, and set up FreeRADIUS to work with network devices and users. Prerequisites A fresh Ubuntu server. Basic knowledge of Linux command-line operations. Administrative access to the server. Step 1: Update and Upgrade the System…
-
Apache Multisite Setup
Host suar.services, cv.suar.services, and help.suar.services with Apache Set up an Apache server to host suar.services, cv.suar.services, and help.suar.services with both HTTP and HTTPS support. 1. Install Apache Ensure Apache is installed and running: sudo apt update sudo apt install apache2 sudo systemctl start apache2 sudo systemctl enable apache2 2. Enable Required Apache Modules Enable necessary…