Advanced Search
Search Results
12 total results found
SSH Agent for Passphrase Management
SSH Agent is a background process that keeps your keys unlocked during your session. Start the agent and add keys: eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_rsa_work ssh-add ~/.ssh/id_rsa_personal Per each key added to ssh you will need to type a phras...
Disable Password Login
Once we have ssh key setup we can disable password login on servers once keys are set up. This way our server and services are more secure. SSH to server Edit sshd_config file sudo nano /etc/ssh/sshd_config Set Authentication to No PasswordAuthent...
Managing Multiple SSH Keys
If you use different keys for different servers or services (e.g., GitHub, work, personal), here’s how to keep it organized. Using different keys for different services makes things way more organized and secure. This way if one key gets compromised, you only ...
Updating Authentik
This is extended guide to updating Authentik software. Read trough official Authentik documentation before running updates. Authentik Documentation Take a snapshot of Overseer vm Navigate to Authentik Directory cd /docker/authentik Backup Database...
Set Up Proxmox Backup Server with NFS Storage
Proxmox Backup Server PBS is design to backup Proxmox Virtual Environment. Proxmox Backup Server is designed to run bare-metal on dedicated hardware, with dedicated drives for the operating system and backups. The main backup should be on bare metal and NFS S...
Schedule Backup Job with PBS
This guide goes over scheduling backup job with PBS server. Proxmox Virtual Environment can run it's own jobs, but for best optimization, using deducation and verify jobs, having PBS is good idea. Also, it provides redundancy if pve goes down. Using Proxmox B...
Installing Gotify with iGotify for iOS
Gotify is a self-hosted notification server that lets you send messages to devices and apps via a simple API. It’s great for server alerts, home automation, and custom scripts because you control delivery and history. iGotify is the bridge that makes Gotify w...
What to Do When Files in the Import Folder Don’t Show Up
Sometimes you drop documents into your Import folder, but nothing appears in the Paperless dashboard. This usually isn’t a bug — it’s just how Paperless watches for new files. Here’s a quick guide to diagnose and fix it. Paperless watches the import folder us...
Homelab Projects
This page goes over few major applications running on my Homelab RustDesk RustDesk is an open-source remote desktop solution that I host locally on Akamai and Linode cloud platforms. This setup ensures secure, private, and encrypted communication channels, ...
Installing Docker
Steps for Installing Docker Add the Docker Repository echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.li...
MeshCentral Installation on Ubuntu Server
These Instructions follow the steps of starting personal MeshCentral remote support server. Prerequisites require you to have set up ubuntu server, and have DNS record set up to point to this ip:443. It's good idea to use cloudflare tunnel or other type of tun...
SSH Key Authentication Create and Share
Why SSH Keys are Important? SSH keys use asymmetric encryption—a public key is placed on the server, and a private key stays on your device. Benefits over Passwords Security: Keys are far more resistant to brute-force attacks than passwords Convenience: ...