Wauw this took a while, ultimately I found the cause of all troubles myself. But all basic information I needed I gathered over the internet and via clause.ai. My Setup Upfront The main reason why it took me multiple days was: the immich.domain.com I sued within CloudFlare, and with that the immic.domain.com I entered in Nginx caused problems and didn’t work. Whatever I tried….. when...
Raspberry Pi backup rsync (SSH) based
Backup your complete Pi to a Synology NAS Create ED25519 keys on RPi ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519_rpi-backup -C "rpi-backup"Code language: JavaScript (javascript)Copy From your user home directory Take care your .ssh folder is readable chmod 700 ~/.sshCopy chmod 700 ~/.sshCopy cd .sshCode language: CSS (css)Copy nano configCopy Enter the following (creating an alias with all kinds...
Upload to drive via WebDAV / reverse proxy
Wauw this took a while, ultimately I found the cause of all troubles myself. But all basic information I needed I gathered over the internet and via clause.ai. Setup Reverse Proxy: NGINX Proxy Manager via Docker on my network Raspberry PiLocal DNS: Via AdGuard on my network Raspberry pi Upfront Using the word <webdav> in your (sub)domain might /wil cause problems because some systems...
Raspberry Pi FireWall (UFW)
sources (references) & credits Basically all input/information came from the websites below. So credits and thanks to those content creators and subject matter experts. The only reason I mainly copy/paste their content is to guarantee I have a backup for myself and because multiple times I had to change and adapt. So archiving the “scripts” as I executed it succesfully is...
Renaming Raspberryi Pi
sudo nano /etc/hostnameCopy sudo nano /etc/hostsCopy sources (references) & credits Basically all input/information came from the websites below. So credits and thanks to those content creators and subject matter experts. The only reason I mainly copy/paste their content is to guarantee I have a backup for myself and because multiple times I had to change and adapt. So archiving the...
Watch folder NAS > RPi
This describes the proces to follow, Watch a folder on Synology NAS (DSM 7.2.x) Any changes (added files) Copy / Move them to a folder on Raspberry Pi external USB SSD Delete them from the NAS sudo mkdir -p /mnt/RPi-MOUNTCopy sudo mount -t nfs 192.168.1.3:/volume1/scan-move /mnt/scan-moveCode language: JavaScript (javascript)Copy sudo mount -t nfs NAS-IP:/volume1/NAS-folder /mnt/RPi-MOUNTCode...
WireGuard on Raspberry Pi
introduction / background How to add a user in WireGuard and how to quickly install the profile on your mobile. requirements / my setup Raspberry Pi + SSH connection Mobile how-to Prepare Take care of updating your Pi sudo apt update sudo apt full-upgradeCopy Install curl to be able to install the WireGuard packages sudo apt install curl -yCopy Installing WireGuard Start the process: curl -L |...
RPi from SD-card to M.2 SSD
introduction / background My Setup Quote by notenoghtech (see below for credits) M.2 is a connector type. It’s a hardware specification shared by NVMe (PCIe controller) and SATA-based solid-state drives. To take advantage of the boot via PCIe port exclusive to Raspberry Pi 5 board, you need an M.2 NVMe drive.The next step is to understand the form factor. M.2 SSDs come with various storage...