/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

xn--blgg-hra.no
| | rmoff.net
2.3 parsecs away

Travel
| |
| | strugglers.net
2.2 parsecs away

Travel
| | A code snippet for generating an IPv6 link-local address from a MAC address
| | skushagra.com
1.9 parsecs away

Travel
| |
| | ketanvijayvargiya.com
18.9 parsecs away

Travel
| Vanilla installation # Setting up Pi-hole was really easy: https://docs.pi-hole.net/main/basic-install/ Docker, using macvlan #The following allows you to setup Pi-hole with a new dedicated IP address alongside other services that are already running on port 80 on your machine. version: '3.5' services: pihole: container_name: pihole image: pihole/pihole:latest cap_add: - NET_ADMIN networks: pihole_network: ipv4_address: 192.168.1.199 # New IP address that we'll assign to Pi-hole. ports: - 443/tcp - 53/tcp - 53/udp - 67/udp - 80/tcp environment: ServerIP: 192.168.1.199 TZ: 'America/Los_Angeles' WEBPASSWORD: "" volumes: - '/home/pi/docker-stuff/etc-pihole:/etc/pihole' - '/home/pi/docker-stuff/etc-dnsmasq.d:/etc/dnsmasq.d' restart: unless-stopped networks: piho...