Purpose of this documentation is to install Golang on Ubuntu Server. Follow these instructions step by step. Let’s Begin Define the Go version to install GO_VERSION="1.24.4" Define the ...
Deploy your self-hosted github action runner
Prerequisites Purpose of this documentation to setup self-hosted github action runner and use it for continuous integration and deployment. Let’s start create work directory and give user perm...
Make your own self-hosted docs server using Bookstack
BookStack is a simple, self-hosted, easy-to-use platform for organizing and storing documentation. It’s a web application that makes it easy to create, store, and share your documents, knowledge ba...
Setup Network File System (NFS) on ubuntu linux
NFS, an acronym for Network File System, facilitates file sharing and access across a network. Here’s a guide for setting up NFS on both the server and client sides: Server Setup Install ...
Deploy your own media streaming server with Jellyfin
Jellyfin media streaming server installation guide for Raspberry PI Installation Before we proceed, let us start by ensuring we are running an updated operating system. As long as you are ru...
GPG key installation or setup guide
Purpose of this guide is to provide a step-by-step guide on how to install and setup GPG key on Ubuntu Server. GPG Installation Install gnupg: sudo apt update sudo apt install gnupg ...
Golang debugging guide using dlv debugger
Purpose of this documentation is to provide a comprehensive guide on how to debug Golang applications using the Delve debugger (dlv). This guide covers installation, setting up a remote debugger, a...
VS Code Server installation guide
Purpose of this guide is to provide a step-by-step installation process for Visual Studio Code server on Linux systems. This guide will help you set up VS Code server for remote development in web ...
SendMail setup on ubuntu server
Send mail is a cli application for sending email using smtp server. Installation sudo apt install sendmail Configure # Config path "/etc/ssmtp/ssmtp.conf" # The person who gets all mail for us...
Securing Nginx with IP Whitelist, Rate Limit and Basic Auth
Nginx is a robust web server and reverse proxy that also functions as a powerful access control gateway. When exposing sensitive areas like admin dashboards, internal APIs, or dev environments, it’...