GithubHelp home page GithubHelp logo

home-remote-server's Introduction

README

Project Requirements and Goals

  • Secure, remote access to cameras
  • Secure access with IdP (Okta, Google, etc.)
  • Nginx reverse proxy to access cameras
  • Secure, remote access to host for management (I use this even when I'm on network)
  • Applications run in containers
  • Run on older Raspberry Pi (armv7l)
  • Bonus: Pi-hole
  • Learn how to run multiple containers and networks on a single host
  • Learn to use .env file to configure secrets in docker compose using 1Password CLI
  • Learn to use service account with 1Password CLI

Secure Remote Access to Home Network Services

On the home server we need to have a secure connection to the web cameras. We want to limit who can access the cameras, and we don't want to run a VPN. And while we're at it, we might as well run the Pi-hole DNS blackhole on it and point the IoT devices to use the Pi-hole. Finally, I'd like to have remote access to the server, so I added a 2nd Cloudflare tunnel so I can SSH to the host.

Cloudflare tunnels work well, and I've used them for more than a year. Cloudflare now calls this service, Cloudflare Zero Trust, because hey, everyone wants zero trust now days.

I had to update my edge Raspberry Pi OS to Ubuntu 22.10, and decided to add Pi-hole to it as well. And since I'm upgrading, I wanted to up my game and finally learn to use Docker.

I had to install cloudflared, nginx, and pihole containers on the Raspberry Pi 3 B from 2015. (Aren't these things amazing?).

I'm using a Docker image msnelling/cloudflared because I'm running this on an older Pi, but if you're using a newer one, you can use the official Cloudflare image cloudflare/cloudflared:latest. You can configure this as environment variable in the .env file.

Network Diagram for Cloudflare Tunnels

The diagram shows the connectivity between the system components, both internal and external, physical and virtual.

When the cloudflared container is created, it creates a bridge network named cloudflared. The nginx and pihole containters are added to cloudflared network so they can be available over the Cloudflare tunnel created by the cloudflared container.

The camera network connects to the nginx container, restricting access to the camera webservers to the cloudflared tunnel. These are what Cloudflare calls Self-hosted applications and authentication can be controlled by your IdP such as Okta or Google for example. The diagram below shows the connectivity between the system components.

Cloudflare diagram of how traffic flows between users, Cloudflare, Identity Providers, and self-hosted applications

Diagram of Home Network

The diagram below shows the connections on the server and to internal and external sites.

diagram of the network connections on the server and to internal and external sites

Pihole Web Interface

screenshot of web interface for pihole

Repo Contents

This repo has the code to create services for our home server running:

  • cloudflared - to create a private tunnel with a proxy managed by Cloudflare
  • nginx - a reverse proxy for the camera webpages
  • pihole - a DNS sinkhole and ad blocker
  • cloudflared-host - tunnel to the host for SSH
  • .env file with secrets and image name for cloudflared

How to Install

I recommend you break this down into pieces if you're using Cloudflare Tunnels for the first time. Start with the cloudflared-host container that connects you to the Raspberry Pi host and see if you can SSH to it, then move on to the other components. You could also hard code your secrets to make things easier to test, and then go back and change the code to use 1Password.


Prerequisites

  1. Ubuntu 22.10
  2. Docker installed and running
  3. docker-compose installed
  4. Cloudflare account and domain
  5. Configure your application(s) in Cloudflare
  6. 1Password CLI installed

Manage Docker as a non-root user

  1. Create the docker group: sudo groupadd docker
  2. Add your user to the docker group: sudo usermod -aG docker $USER
  3. Logout and log back in
  4. Verify that you can run docker without sudo: docker run hello-world

See Instructions from Docker if there's any trouble.

Build and Start Docker Containers

Clone this repo to host in your home directory gh repo clone beckitrue/home-remote-server

Configure .env Values

We're saving our secrets in an .env file and referencing them with 1Password. This ensures that the secrets don't get saved to GitHub. Instructions for referencing 1Password values can be found here. It's a good idea to run op read op://<your credential> to verify that your credential reference is correct.

  1. Create a 1Password service account
  2. Set your op service account environment variable export OP_SERVICE_ACCOUNT_TOKEN=<token>
  3. Save your cloudflared tokens and your PiHole web password in 1Password
  4. Change the values in the .env file to the correct values for your cloudflared tokens and PiHole password using your 1Password credential references
  5. Set the cloudflared image you want to use. The official image is cloudflare/cloudflared:latest. The image I'm using works on the older arm7l Pi architecture.

cloudflared-host

  1. Build and start cloudflared docker container from the home-remote-server directory run op run --env-file=".env" -- docker compose -f cloudflared-host/docker-compose.yaml up -d
  2. Go to Tunnels dashboard and verify that tunnel is healthy.
  3. SSH to the host using the Cloudflare tunnel https://your_app.yourdomain

cloudflared

  1. Build and start cloudflared docker containerfrom the home-remote-server directory run op run --env-file=".env" -- docker compose -f cloudflared/docker-compose.yaml up -d
  2. Go to Tunnels dashboard and verify that tunnel is healthy.

nginx

We're manging the Nginx configuration and content files by mounting to a local directory on the Pi. Any changes in those directories will show up in the container. You'll restart your containter to pull the config and / or new content.

  1. sudo mv ~/home-remote-server/nginx/default.conf /var/nginx/conf/default.conf This is where you'll change your nginx config file(s)
  2. sudo mv ~/home-remote-server/nginx/index.html /var/www/index.html This is where you'll change your content file(s)
  3. Build and start nginx docker container docker compose -f ~/home-remote-server/nginx/docker-compose.yaml up -d
  4. Go to nginx webpage and verify it's working. (use your URL)

pihole

  1. Build and start pihole docker container from the home-remote-server directory run op run --env-file=".env" -- docker compose -f pihole/docker-compose.yaml up -d
  2. Go to pihole admin page (use your own URL) and verify it's working
  3. Follow the instructions for Installing on Ubuntu on the pi-hole GitHub site. This is to make the pi-hole the DNS server running on the Raspberry Pi.
  4. Follow the Post-Install instructions to complete the configuration Make sure you have connectivity and the pi-hole is resolving DNS before making these changes, or you may not have DNS available
  5. Enable the default blocklist to get started. Follow the instructions for Pi-Hole V5.

Rebuild Containers

  1. Pull latest image: docker pull pihole/pihole
  2. cd ~/home-remote-server/pihole
  3. op run --env-file="../.env" -- docker-compose up --build --remove-orphans --force-recreate -d

Troubleshooting

Running these services in Docker containers was meant to be a learning experience for me, and it was. Here are some troubleshooting steps I had to take to troubleshoot DNS, network connectivity, and re-creating containers to use configuration changes.

Assumptions

  • Assumes that your Cloudflare tunnel is working and you have your Application(s) configured in Cloudflare. Refer to Cloudflare documentation if your tunnel isn't working.
  • Assumes that you are using the settings in the docker-compose.yaml files for ports, names, etc.
  • Assumes you have configured the upstream DNS servers in Pi-hole
  • Assumes that you have 1Password CLI installed on your host machine

Networking

  1. Make sure you are running your services in the same network as your cloudfared container is running in.
  2. cloudflared will create a bridge network named cloudflared, so you might as well put your services in that network. The Docker documentation on networking is very good. Check it out if this is new to you.
  3. You specify the network in the docker-compose.yaml file, and you can check out the details in the Networking in Compose documentation. If you use the code in this repo, you'll see the network is specified in the docker-compose.yaml file. The containers are named, so we can use their names instead of IP addresses.
  4. You can see which networks are configured by running docker network ls and you should see cloudflared listed
  5. You can get details about the network by running docker network inspect cloudflared
  6. You can see details about the container network configuration by running docker inspect <container_name>

Connectivity

  1. Check connectivity from a client computer such as your laptop, and verify that you can connect to the Pi-hole web UI http://<server-ip>:8080/admin/index.php
  2. To check connectivity from cloudflared to pi-hole container run docker exec -it cloudflared sh -c 'wget http://<container-ip-of-pi-hole>' (you'll want to clean up and delete the index.html file when you're done).
  3. Check connectivity between containers: docker exec cloudflared ping pihole -c2 or use the IP address docker exec cloudflared ping 172.18.0.4 See more excellent networking tips here
  4. Run commands from within the container. The cloudflared containers run sh, and the nginx and pihole containers use bash

DNS

  1. From the server host run resolvectl status to verify which DNS servers are configured. It should be the IP address of the pi-hole container in the cloudflared network, 127.0.0.1 or the IP address of the server.
  2. The docker-compose.yaml files are configured to use the pi-hole for DNS. You can verify the configuration for the containers by running docker inspect <container_name>. Check the DNS settings match what you expect them to be.
  3. From your client device, run nslookup google.com <Pi-Hole Public IP Address> and you should get a list of hosts

Nginx Reverse Proxy

I had a devil of a time with getting this setup until I made the config file name default.conf. After that, the configuration worked. But if you have trouble you can try using these documents to help:

Rebuilding Containers

op run --env-file="../.env" -- docker-compose up --build --remove-orphans --force-recreate -d from the server command line in the conatiner-directory will kill the container and force a rebuild.

ToDo

home-remote-server's People

Contributors

beckitrue avatar renovate[bot] avatar

Watchers

 avatar

home-remote-server's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

This repository currently has no open or pending branches.

Detected dependencies

docker-compose
cloudflared-host/docker-compose.yaml
cloudflared/docker-compose.yaml
nginx/docker-compose.yaml
pihole/docker-compose.yaml

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.