|
You are here |
vlad.website | ||
| | | | |
hjr265.me
|
|
| | | | | I have lines like these in my /etc/hosts file: 127.0.0.1 toph.local 127.0.0.1 drafts.toph.local 127.0.0.1 quiz.toph.local I can run development servers locally and access them over .local hostnames (e.g. toph.local) instead of the loopback IP addresses (e.g. 127.0.0.1). It works fine. But every time I start working on a new project, I needed to add a new line to the /etc/hosts file. It didn't sit right with me. I should be able to point all *. | |
| | | | |
blogops.mixinet.net
|
|
| | | | | This entry explains how I have configured a linux bridge, dnsmasq and iptables to be able to run and communicate different virtualization systems and containers on laptops running Debian GNU/Linux. I've used different variations of this setup for a long time with VirtualBox and KVM for the Virtual Machines and Linux-VServer, OpenVZ, LXC and lately Docker or Podman for the Containers. Required packagesI'm running Debian Sid with systemd and network-manager to configure the WiFi and Ethernet interfaces, bu... | |
| | | | |
ketanvijayvargiya.com
|
|
| | | | | 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... | |
| | | | |
nts.strzibny.name
|
|
| | | Here's one way of a cloud-independent deployment of Rails, Sidekiq, PostgreSQL, and Redis on single virtual server with Kamal. | ||