innisfree
A tool to aid in self-hosting. Expose local services on your computer, via a public IPv4 address.
Why?
Most of the data I maintain is local, within my house, or otherwise on a machine that I control. Uploading that information to a cloud server doesn't always make sense. For one, it's not private: the cloud provider has direct access to all the files I upload. Second, if I have large amounts of data, such as a music collection, it's both expensive and inefficient to upload all that data to the cloud simply so that I can access it remotely.
Mostly, I just want an IP address tied to a service I'm running. I don't want to publish my home IP in DNS records. I don't want to open ports on my home router to allow traffic in.
How it works
When you run innisfree up
, the program performs the following steps:
- Checks for
DIGITALOCEAN_API_TOKEN
env var, so it can access the DigitalOcean cloud provider. - Generates keypairs locally, for trusted connections over SSH and Wireguard.
- Creates a new cloud server, configured with those keypairs.
- Builds a Wireguard connection between your local computer and the server.
- Configures nginx on the server, to pass traffic from the public IP of the server to select services you're running locally (by default,
8080/TCP,443/TCP
). - If a
--dest-ip
was specified, configures a local proxy to pass traffic from the local Wireguard interface to another service locally. Useful when the local service is running on an address other than localhost.
Installation
There are deb packages available in the Releases page on this repo. You can install directly from source:
# Build a deb package and install it locally
make install
Requirements
- Linux-only. Even if the binary compiles under macOS, userspace implementations of Wireguard are still up-and-coming.
- Wireguard. For most modern Linux distros, this is available out of the box. Notably, Debian Stable Buster 10 lacks it, but it's available in the buster-backports repo. Run
innisfree doctor
to check support your machine. - A DigitalOcean cloud account, to create a server.
Usage
USAGE:
innisfree [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
doctor Run checks to evaluate platform support
help Prints this message or the help of the given subcommand(s)
ip Display IPv4 address for cloud node
proxy Start process to forward traffic, assumes tunnel already up
ssh Open interactive SSH shell on cloud node
up Create new innisfree tunnel
What's with the name?
It's from the Yeats poem:
I will arise and go now, and go to Innisfree,
And a small cabin build there, of clay and wattles made:
Nine bean-rows will I have there, a hive for the honey-bee;
And live alone in the bee-loud glade.
The idea is that in context of the internet, my own home is already the "bee-loud glade": I don't need to upload all my data into the hustle and bustle of cloud computing. Just give me an IP, so I can share data with others, and that's enough.
License
AGPLv3