Skip to content

Instantly share code, notes, and snippets.

View fullmetalbrackets's full-sized avatar

Ariel Diaz fullmetalbrackets

View GitHub Profile
@fullmetalbrackets
fullmetalbrackets / docker-compose.yaml
Last active February 3, 2025 09:22
Navidrome + Cloudflare Tunnel with Docker-Compose
# Before running this go to Cloudflare Zero Trust dashboard -> Access -> Tunnels -> Create new tunnel
# Copy & paste the generated token next to TUNNEL_TOKEN= env variable below
# Full guide at https://fullmetalbrackets.com/blog/setup-cloudflare-tunnel-to-access-self-hosted-apps
services:
tunnel:
container_name: cloudflare-tunnel
image: cloudflare/cloudflared
command: tunnel run
@fullmetalbrackets
fullmetalbrackets / pi-hole.conf
Last active December 19, 2024 20:32
Pi-Hole + Unbound using Quad 9 w/ DNS over TLS
# https://www.reddit.com/r/pihole/comments/unygz9/struggiling_to_find_unbound_doh_setup_guide/i8bqf37
# These lines added to /etc/unbound/unbound.conf.d/pi-hole.conf will configure Unbound as a forwarding resolver to Quad9 using DoT
# Note: For my own purposes I substituted 9.9.9.9 with 9.9.9.11 which is Secured w/ECS: Malware blocking, DNSSEC Validation, ECS enabled
tls-cert-bundle: /etc/SSL/certs/ca-certificates.crt
forward-zone:
name: "."
forward-tls-upstream: yes
# Quad 9
@fullmetalbrackets
fullmetalbrackets / docker-compose.yml
Created July 27, 2023 19:35
Pi-Hole + Cloudflared using Quad9 w/ DNS over TLS
# Use this docker-compose file to create cloudflared container configured with Quad9 DoT upstream
version: "3.6"
services:
cloudflared:
container_name: cloudflared
image: cloudflare/cloudflared
command: proxy-dns
environment:
@fullmetalbrackets
fullmetalbrackets / set-static-ip-debian.md
Created August 3, 2023 03:20
Set static IP in Debian

Make a backup copy of the default network interfaces file

cp /etc/network/interfaces /etc/network/default-interfaces

Edit the interfaces file

nano /etc/network/interfaces
@fullmetalbrackets
fullmetalbrackets / how-to-ssh-into-windows.md
Created May 7, 2024 04:23 — forked from teocci/how-to-ssh-into-windows.md
How to SSH into Windows 10 or 11?

How to SSH into Windows 10 or 11?

The latest builds of Windows 10 and Windows 11 include a build-in SSH server and client that are based on OpenSSH. This means now you can remotely connect to Windows 10/11 or Windows Server 2019 using any SSH client, like Linux distros. Let's see how to configure OpenSSH on Windows 10 and Windows 11, and connect to it using Putty or any other SSH client.

OpenSSH is an open-source, cross-platform version of Secure Shell (SSH) that is used by Linux users for a long time. This project is currently ported to Windows and can be used as an SSH server on almost any version of Windows. In the latest versions of Windows Server 2022/2019 and Windows 11, OpenSSH is built-in to the operating system image.

@fullmetalbrackets
fullmetalbrackets / docker-compose.yml
Created July 15, 2024 18:54
Plex + Cloudflare Tunnel
services:
plex:
restart: unless-stopped
container_name: plex
image: linuxserver/plex:latest
network_mode: host
environment:
- TZ=America/New_York
- PLEX_UID=1000
- PLEX_GID=1000