Skip to content

Instantly share code, notes, and snippets.

View takouhai's full-sized avatar
🌮

daniel (taco) takouhai

🌮
View GitHub Profile
@takouhai
takouhai / readme.md
Created December 10, 2025 06:20 — forked from diyfr/readme.md
AdGuard Home + Traefik

edit traefik.yml

entryPoints:
  web:
    address: ":80"
  websecure:
    address: ":443"
  dot: # <- ADD THIS
    address: ":853"  # <- ADD THIS
@takouhai
takouhai / og_metadata.pug
Last active August 9, 2016 20:32 — forked from allanwhite/G+ metadata
Pug snippet for spitting out Open Graph meta tags based on a simple array. Note: various social networks have different requirements about images, etc.
- var site = {title: 'site name', url: 'http:site.com', image: '/images/thumbnail-site-square.jpg', favicon: '/favicon.ico', description: 'Site Description'}
each val, key in site // Open Graph metadata
meta( property = 'og:' + key , content = val )