Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

60 total results found

traefik

Homelab System

Docker Label Configuration Base Labels This is the minimum set of labels you need to expose a container to traefik: labels: traefik.enable: true traefik.http.routers.<service_name>.entrypoints: <ep1>, <ep2> traefik.http.routers.<service_name>.rule: Ho...

Syncthing

Homelab Services

lm-sensors

Homelab System

Label Value CPUTIN Motherboard's CPU temp sensor SYSTIN Motherboard temp sensor AUXTIN Aux temp sensors, usually for PSU

Authentik

Homelab Services

Proxmox

Homelab

Docker Firewall Configuration

Homelab System

Source: Firewalld Strict Docker Filtering Preparation Required parts: Install firewalld and activate service: pacman -Syu firewalld systemctl enable --now firewalld.service Disable any other firewall services. Disable iptables for docker by adding or ch...

SELinux

Homelab

Guides and reference for my SELinux configurations

VIA Keyboard Configuration

Client Devices

To allow access to VIA, write the following to /etc/udev/rules.d/99-viia.rules: KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0666", TAG+="uaccess", TAG+="udev-acl" Launching VIA without performing the above step will cause it to prompt you to add the file a...

KDE Fixes

Client Devices

NixOS

Homelab

Programming

Quick Reference

KDE systemd Autostart Configuration

Client Devices

kwriteconfig5 --file startkderc --group General --key systemdBoot true This sets up autostart for plasma user services using systemd instead of the default scripts.

audit

Homelab System

Kernel Parameters: audit=1 audit_backlog_limit=8192 This prevents the message kauditd: hold queue overflow  

Scanning

Client Devices

Epson WorkForce ES-580W sane epsonds backend

Troubleshooting

Homelab Services

Django CSRF verification failed: null does not match any trusted origins If a django-backed service is sitting behind a reverse proxy, ensure that for referrer policy header, it is passing 'same-origin'. For example, in traefik's file provider: headers-mid...

Samba/SMB

Homelab Services

Configuration My user is set up in unix groups that correspond to the groups outlined in the following config sections and added in the groups paperless and timemachine. Paperless-ngx Consumer Share [paperlessngx-consumer] comment = Paperless-ngx Consumpti...

Users/Groups

Homelab System

krypton User Group Type (login/system) Purpose restic backup system Run the restic-rest-server www-srv www system Run web-accessible services  - timemachine traefik traefik system Run the t syncthing ...

PiKVM

Homelab System

Important Lines for /boot/config.txt Used to fix kvmd-otg and kvmd-tc358743 not starting at boot dtoverlay=tc358743dtoverlay=disable-btdtoverlay=dwc2,dr_mode=peripheral

FiOS Router

Homelab System

Set Router to Bridge Mode Login to router administration interface Select "My Network" on the top bar https://kb.its-et.me/uploads/images/gallery/2024-07/NjfmO28jwrLeg9rS-image.png Select "Network Connections" > "Advanced" Select edit icon for "Network ...

Docker Healthchecks

Homelab Services

Rationale Use these to verify the health of database containers. This allows me to only run web services when a database is healthy. This prevents us from hiding a silent failure. MariaDB healthcheck: test: ["CMD", "healthcheck.sh", "--connect", "--innod...