Explore >> Select a destination


You are here

benjamintseng.com
| | ketanvijayvargiya.com
9.1 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: pihole_network: driver: macvlan driver_opts: parent: eth0 # I got this from the output of `ifconfig`. ipam: config: - subnet: 192.168.1.0/24 gateway: 192.168.1.1 ip_range: 192.168.1.192/28 Helpful resources on this:
| | eerielinux.wordpress.com
16.5 parsecs away

Travel
| | [New to Gemini? Have a look at my Gemini FAQ.] This article was bi-posted to Gemini and the Web; Gemini version is here: gemini://gemini.circumlunar.space/users/kraileth/neunix/2023/cbsd_pt5.gmi This article is about creating jails right from the command line. This time we will also build an example jail that is somewhat useful. Let's assume that we have a NAS...
| | blog.chand1012.dev
9.8 parsecs away

Travel
| | In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app.
| | kohanikin.com
52.6 parsecs away

Travel
| How to filter out SEMalt, Kambasoft, Trafficmonetizer and other referrer spam from your Google Analytics reports.