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

129 total results found

prometheus.yml

Prometheus / Grafana Dashboard

global: scrape_interval: 5s external_labels: monitor: 'node' scrape_configs: - job_name: 'prometheus' static_configs: - targets: ['192.168.68.127:9090'] ## IP Address of the localhost. Match the port to your container port - job_n...

docker-compose.yml

Authelia for NGINX Proxy Manager

version: '3.3' services: authelia: image: authelia/authelia container_name: authelia volumes: - /volume1/Configs/Authelia:/config #change this to a shared folder on your system. DO NOT use a "volume" ports: - 9091:90...

Authelia CONF

Authelia for NGINX Proxy Manager

You will need to setup a domain/subdomain for your authentication. Setup your domain/subdomain in NGINX Proxy Manager as normal. Then add the following to the "Advanced" tab in the Proxy Host setup for the domain. location / { set $upstream_authelia http://1...

Protected Domain CONF

Authelia for NGINX Proxy Manager

This will be placed in the "Advanced" tab of the "Edit Proxy Host" in NGINX Proxy Manager for the domain you want to protect. location /authelia { internal; set $upstream_authelia http://192.168.1.25:9091/api/verify; #change the IP and Port to match the IP ...

configuration.yml

Authelia for NGINX Proxy Manager

After you've started your Authelia container, it will generate a configuration.yml file. Once it's been generated, STOP the authelia container and replace the existing configuration.yml with the content below. # yamllint disable rule:comments-indentation --...

users_database.yml

Authelia for NGINX Proxy Manager

    users: user1: #username for user 1. change to whatever you'd like displayname: "User Name 1" #whatever you want the display name to be password: "$argon2i$v=19$m=1024,t=1,p=8$eTQ3MXdqOGFiaDZoMUtMVw$OeHWQSg9zGKslOepe5t4D1T9BZJjHA1Z+doxZrZYDgI...

Installing NextCloud on CasaOS

NextCloud on CasaOS

The method used here uses 2 containers for setup. The first container is the official NextCloud Cocker container. The second container is the YobaSystems MariaDB container. You can download the .json files for this project over on Patreon. Database Install ...

Flame Dashboard on CasaOS

Flame Dashboard on CasaOS

You're going to need to download the FlamePi.json file attached to this article. Please review these .json files before you do anything with them so that you can see what they contain. Only use the files if you are comfortable with their contents. To get sta...

Installing CasaOS

CasaOS Installation - Start Here

Installing CasaOS is SUPER simple no matter what kind of device you're using (Ubuntu, Debian, Raspberry Pi OS, and CentOS). Install your preferred base operating system to get started based on the instructions of that operating system. Once that is done and ...

Check Temps

Raspberry Pi

To check your Pi's current temp, use this command in the terminal: vcgencmd measure_temp

Check RAM

Raspberry Pi

If you have multiple Pis that you're using and moving around a lot, you might forget how much RAM your Pi has. If you forget, enter this in the terminal: free -h

Installation Process

LinkAce

LinkAce is a self-hosted archive to collect links of your favorite websites. Save articles to read them later, tools to use them in your next project, or historic content to archive it for the long term. LinkAce comes with a lot of features while keeping a cle...

How to Install and Configure Fail2Ban to work with NGINX Proxy Manager

Fail2Ban

In this post we'll look at how to get Fail2Ban set up to work with NGINX Proxy Manager. Additionally, we'll add a configuration that will show us the real (instead of the CloudFlare) IP addresses of anyone who is being a bad actor on your network and Fail2Ban ...

Aura 15 Notes

Aura 15

This is the Aura 15. It is a 15.6" Linux-based laptop from Tuxedo Computers in Germany. I've been wanting to get my hands on a new laptop for a while and so I reached out to the folks at Tuxedo Computers. I was thrilled when they asked me to spec out a system...

Manscaped

Manscaped

This video is brought to you by Manscaped.com, the global brand for men’sgrooming and hygiene products. Just because guys in the tech industry are thought of being gross, basement-dwelling neckbeards, doesn't mean OUR basement-dwellers need to be gross neckbe...

ZimaBoard 832 Specs

ZimaBoard

Processor Intel Celeron Processor 'Apollo Lake'N34504 Cores1.1GHz base frequency2.2GHz Burst2MB L2 cache Intel® HD Graphics 500 200MHz Base Frequency700MHz Burst Memory 3200MHz LPDDR4, dual-channel8GB Onboard Storage eMMC 5.132GB TDP 6W I/O HDD/SSD ...

New Series

ZimaBoard

ZimaBoard and Hardware Intro OMV 6 Install and Set Up w/ Portainer Duplicati / BackBlaze ZeroTier NGINX Proxy Manager, Fail2Ban, CloudFlare GoAccess Stats Flame Dashboard Vikunja Uptime Kuma BookStack AdGuard BitWarden  

NGINX Proxy Manager

Linode Stacks

version: '3' networks: nginx_proxy_manager: services: app: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '81:81' - '443:443' volumes: - /home/docker/nginxproxyma...

Portainer

Linode Stacks

version: '3.3' services: portainer-ce: ports: - '9000:9000' - '8000:8000' container_name: portainer networks: - nginx_proxy_manager restart: always volumes: - '/var/run/docker.sock:/var/run/docker.sock' ...

Docker-Compose.yml

BitWarden / VaultWarden

version: '3.3' services: server: container_name: vaultwarden volumes: - '/vw-data/:/data/' ports: - '80:80' image: 'vaultwarden/server:latest'