Category: Web
-
Install Tinc Mesh VPN on Linux
In this tutorial, we’ll guide you through the process of setting up a Tinc VPN service with a static IP. For this demonstration, we’ll assume you have one machine in the cloud with a static IP (referred to as ‘your_server’) and another machine (‘your_client’) located behind multiple NAT firewalls. Tinc is a highly versatile mesh…
-
Optimizing Nextcloud: Administration Settings for Increased Performance
If you navigate to your Nextcloud instance using a browser and go to Administration Settings after a fresh install, you may notice some warnings and recomendations, many of the technologies used on the server side are not optimized for use with Nextcloud out of the box. Any red warnings should be dealt with. The PHP…
-
Installing phpMyAdmin and WordPress on Rocky Linux
This guide provides a step-by-step approach to installing phpMyAdmin and WordPress on Rocky Linux. Customize the paths, IPs, and database configurations as needed for your specific setup. Prerequisites: Ensure that your Rocky Linux system has sudo enabled and that you have already installed the LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack. Step 1: Install phpMyAdmin sudo…
-
Securely Access Your Home Lab Using Cloudflare and a Domain
Cloudflared is a powerful tool that excels in enhancing both security and network accessibility. From a security perspective, it serves as a robust solution for creating secure tunnels to your private resources, ensuring that sensitive data and services are protected from unauthorized access. With built-in encryption and authentication, Cloudflared offers peace of mind in an…
-
Set Up a Debian 11 System as a Server with Nextcloud (LAMP)
In this tutorial, we’ll guide you through the process of setting up a Debian server with Nextcloud, a popular self-hosted cloud storage solution. Ensure that you have a freshly upgraded Debian installation and an ssh server. Step 1: Install sudo Install sudo if it’s not already installed, and add your user to the sudo group,…
-
Host your own website using WordPress on Debian 11
In this tutorial, we’ll walk you through the process of installing WordPress on a Debian system, configuring Apache as the web server. Let’s get started! Step 1: Update the System Before we begin, let’s ensure that the system is up to date: sudo apt update && sudo apt upgrade -y Step 2: Upgrade to PHP…
-
How to Install a LAMP Stack on Debian 11
In this tutorial, we’ll guide you through the process of setting up a LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack on a Debian 11 server. A LAMP stack is a popular choice for hosting dynamic websites and web applications. Let’s get started! Step 1: Install Apache Web Server We’ll begin by installing the Apache web server:…