mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 17:03:06 +00:00
Merge pull request #184 from juanfont/doc-reorg-v1
Move documentation away from README and use YAML everywhere
This commit is contained in:
commit
355483fd86
16 changed files with 384 additions and 322 deletions
22
.github/workflows/contributors.yml
vendored
Normal file
22
.github/workflows/contributors.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: Contributors
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-contributors:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: BobAnkh/add-contributors@master
|
||||||
|
with:
|
||||||
|
CONTRIBUTOR: "## Contributors"
|
||||||
|
COLUMN_PER_ROW: "6"
|
||||||
|
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||||
|
IMG_WIDTH: "100"
|
||||||
|
FONT_SIZE: "14"
|
||||||
|
PATH: "/README.md"
|
||||||
|
COMMIT_MESSAGE: "docs(README): update contributors"
|
||||||
|
AVATAR_SHAPE: "round"
|
28
.github/workflows/release.yml
vendored
28
.github/workflows/release.yml
vendored
|
@ -4,20 +4,18 @@ name: release
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "*" # triggers only if push new tag version
|
- "*" # triggers only if push new tag version
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
goreleaser:
|
goreleaser:
|
||||||
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
|
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
-
|
- name: Set up Go
|
||||||
name: Set up Go
|
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16
|
go-version: 1.16
|
||||||
|
@ -26,8 +24,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y gcc-aarch64-linux-gnu
|
sudo apt install -y gcc-aarch64-linux-gnu
|
||||||
-
|
- name: Run GoReleaser
|
||||||
name: Run GoReleaser
|
|
||||||
uses: goreleaser/goreleaser-action@v2
|
uses: goreleaser/goreleaser-action@v2
|
||||||
with:
|
with:
|
||||||
distribution: goreleaser
|
distribution: goreleaser
|
||||||
|
@ -39,13 +36,11 @@ jobs:
|
||||||
docker-release:
|
docker-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
-
|
- name: Docker meta
|
||||||
name: Docker meta
|
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v3
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
|
@ -58,21 +53,18 @@ jobs:
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
type=semver,pattern={{major}}
|
type=semver,pattern={{major}}
|
||||||
type=sha
|
type=sha
|
||||||
-
|
- name: Login to DockerHub
|
||||||
name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
-
|
- name: Login to GHCR
|
||||||
name: Login to GHCR
|
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
-
|
- name: Build and push
|
||||||
name: Build and push
|
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -6,7 +6,7 @@ before:
|
||||||
builds:
|
builds:
|
||||||
- id: darwin-amd64
|
- id: darwin-amd64
|
||||||
main: ./cmd/headscale/headscale.go
|
main: ./cmd/headscale/headscale.go
|
||||||
mod_timestamp: '{{ .CommitTimestamp }}'
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
goos:
|
goos:
|
||||||
- darwin
|
- darwin
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -23,7 +23,7 @@ builds:
|
||||||
|
|
||||||
- id: linux-armhf
|
- id: linux-armhf
|
||||||
main: ./cmd/headscale/headscale.go
|
main: ./cmd/headscale/headscale.go
|
||||||
mod_timestamp: '{{ .CommitTimestamp }}'
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -42,7 +42,6 @@ builds:
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
||||||
|
|
||||||
|
|
||||||
- id: linux-amd64
|
- id: linux-amd64
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
@ -51,7 +50,7 @@ builds:
|
||||||
goarch:
|
goarch:
|
||||||
- amd64
|
- amd64
|
||||||
main: ./cmd/headscale/headscale.go
|
main: ./cmd/headscale/headscale.go
|
||||||
mod_timestamp: '{{ .CommitTimestamp }}'
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
||||||
|
|
||||||
|
@ -64,7 +63,7 @@ builds:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=aarch64-linux-gnu-gcc
|
- CC=aarch64-linux-gnu-gcc
|
||||||
main: ./cmd/headscale/headscale.go
|
main: ./cmd/headscale/headscale.go
|
||||||
mod_timestamp: '{{ .CommitTimestamp }}'
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
|
||||||
|
|
||||||
|
@ -79,12 +78,12 @@ archives:
|
||||||
format: binary
|
format: binary
|
||||||
|
|
||||||
checksum:
|
checksum:
|
||||||
name_template: 'checksums.txt'
|
name_template: "checksums.txt"
|
||||||
snapshot:
|
snapshot:
|
||||||
name_template: "{{ .Tag }}-next"
|
name_template: "{{ .Tag }}-next"
|
||||||
changelog:
|
changelog:
|
||||||
sort: asc
|
sort: asc
|
||||||
filters:
|
filters:
|
||||||
exclude:
|
exclude:
|
||||||
- '^docs:'
|
- "^docs:"
|
||||||
- '^test:'
|
- "^test:"
|
||||||
|
|
225
README.md
225
README.md
|
@ -14,14 +14,14 @@ Everything in Tailscale is Open Source, except the GUI clients for proprietary O
|
||||||
|
|
||||||
The control server works as an exchange point of Wireguard public keys for the nodes in the Tailscale network. It also assigns the IP addresses of the clients, creates the boundaries between each user, enables sharing machines between users, and exposes the advertised routes of your nodes.
|
The control server works as an exchange point of Wireguard public keys for the nodes in the Tailscale network. It also assigns the IP addresses of the clients, creates the boundaries between each user, enables sharing machines between users, and exposes the advertised routes of your nodes.
|
||||||
|
|
||||||
Headscale implements this coordination server.
|
headscale implements this coordination server.
|
||||||
|
|
||||||
## Status
|
## Status
|
||||||
|
|
||||||
- [x] Base functionality (nodes can communicate with each other)
|
- [x] Base functionality (nodes can communicate with each other)
|
||||||
- [x] Node registration through the web flow
|
- [x] Node registration through the web flow
|
||||||
- [x] Network changes are relayed to the nodes
|
- [x] Network changes are relayed to the nodes
|
||||||
- [x] Namespace support (~equivalent to multi-user in Tailscale.com)
|
- [x] Namespaces support (~tailnets in Tailscale.com naming)
|
||||||
- [x] Routing (advertise & accept, including exit nodes)
|
- [x] Routing (advertise & accept, including exit nodes)
|
||||||
- [x] Node registration via pre-auth keys (including reusable keys, and ephemeral node support)
|
- [x] Node registration via pre-auth keys (including reusable keys, and ephemeral node support)
|
||||||
- [x] JSON-formatted output
|
- [x] JSON-formatted output
|
||||||
|
@ -29,7 +29,7 @@ Headscale implements this coordination server.
|
||||||
- [x] Taildrop (File Sharing)
|
- [x] Taildrop (File Sharing)
|
||||||
- [x] Support for alternative IP ranges in the tailnets (default Tailscale's 100.64.0.0/10)
|
- [x] Support for alternative IP ranges in the tailnets (default Tailscale's 100.64.0.0/10)
|
||||||
- [x] DNS (passing DNS servers to nodes)
|
- [x] DNS (passing DNS servers to nodes)
|
||||||
- [x] Share nodes between ~~users~~ namespaces
|
- [x] Share nodes between namespaces
|
||||||
- [x] MagicDNS (see `docs/`)
|
- [x] MagicDNS (see `docs/`)
|
||||||
|
|
||||||
## Client OS support
|
## Client OS support
|
||||||
|
@ -47,227 +47,18 @@ Headscale implements this coordination server.
|
||||||
|
|
||||||
Suggestions/PRs welcomed!
|
Suggestions/PRs welcomed!
|
||||||
|
|
||||||
## Running it
|
|
||||||
|
|
||||||
1. Download the Headscale binary https://github.com/juanfont/headscale/releases, and place it somewhere in your PATH or use the docker container
|
## Running headscale
|
||||||
|
|
||||||
```shell
|
Please have a look at the documentation under [`docs/`](docs/).
|
||||||
docker pull headscale/headscale:x.x.x
|
|
||||||
```
|
|
||||||
|
|
||||||
<!--
|
|
||||||
or
|
|
||||||
```shell
|
|
||||||
docker pull ghrc.io/juanfont/headscale:x.x.x
|
|
||||||
``` -->
|
|
||||||
|
|
||||||
2. (Optional, you can also use SQLite) Get yourself a PostgreSQL DB running
|
|
||||||
|
|
||||||
```shell
|
|
||||||
docker run --name headscale -e POSTGRES_DB=headscale -e \
|
|
||||||
POSTGRES_USER=foo -e POSTGRES_PASSWORD=bar -p 5432:5432 -d postgres
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Set some stuff up (headscale Wireguard keys & the config.json file)
|
|
||||||
|
|
||||||
```shell
|
|
||||||
wg genkey > private.key
|
|
||||||
wg pubkey < private.key > public.key # not needed
|
|
||||||
|
|
||||||
# Postgres
|
|
||||||
cp config.json.postgres.example config.json
|
|
||||||
# or
|
|
||||||
# SQLite
|
|
||||||
cp config.json.sqlite.example config.json
|
|
||||||
```
|
|
||||||
|
|
||||||
4. Create a namespace (a namespace is a 'tailnet', a group of Tailscale nodes that can talk to each other)
|
|
||||||
|
|
||||||
```shell
|
|
||||||
headscale namespaces create myfirstnamespace
|
|
||||||
```
|
|
||||||
|
|
||||||
or docker:
|
|
||||||
|
|
||||||
the db.sqlite mount is only needed if you use sqlite
|
|
||||||
|
|
||||||
```shell
|
|
||||||
touch db.sqlite
|
|
||||||
docker run -v $(pwd)/private.key:/private.key -v $(pwd)/config.json:/config.json -v $(pwd)/derp.yaml:/derp.yaml -v $(pwd)/db.sqlite:/db.sqlite -p 127.0.0.1:8080:8080 headscale/headscale:x.x.x headscale namespaces create myfirstnamespace
|
|
||||||
```
|
|
||||||
|
|
||||||
or if your server is already running in docker:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
docker exec <container_name> headscale create myfirstnamespace
|
|
||||||
```
|
|
||||||
|
|
||||||
5. Run the server
|
|
||||||
|
|
||||||
```shell
|
|
||||||
headscale serve
|
|
||||||
```
|
|
||||||
|
|
||||||
or docker:
|
|
||||||
|
|
||||||
the db.sqlite mount is only needed if you use sqlite
|
|
||||||
|
|
||||||
```shell
|
|
||||||
docker run -v $(pwd)/private.key:/private.key -v $(pwd)/config.json:/config.json -v $(pwd)/derp.yaml:/derp.yaml -v $(pwd)/db.sqlite:/db.sqlite -p 127.0.0.1:8080:8080 headscale/headscale:x.x.x headscale serve
|
|
||||||
```
|
|
||||||
|
|
||||||
6. If you used tailscale.com before in your nodes, make sure you clear the tailscald data folder
|
|
||||||
|
|
||||||
```shell
|
|
||||||
systemctl stop tailscaled
|
|
||||||
rm -fr /var/lib/tailscale
|
|
||||||
systemctl start tailscaled
|
|
||||||
```
|
|
||||||
|
|
||||||
7. Add your first machine
|
|
||||||
|
|
||||||
```shell
|
|
||||||
tailscale up --login-server YOUR_HEADSCALE_URL
|
|
||||||
```
|
|
||||||
|
|
||||||
8. Navigate to the URL you will get with `tailscale up`, where you'll find your machine key.
|
|
||||||
|
|
||||||
9. In the server, register your machine to a namespace with the CLI
|
|
||||||
```shell
|
|
||||||
headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
|
||||||
```
|
|
||||||
or docker:
|
|
||||||
```shell
|
|
||||||
docker run -v $(pwd)/private.key:/private.key -v $(pwd)/config.json:/config.json -v $(pwd)/derp.yaml:/derp.yaml headscale/headscale:x.x.x headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
|
||||||
```
|
|
||||||
or if your server is already running in docker:
|
|
||||||
```shell
|
|
||||||
docker exec <container_name> headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
|
||||||
```
|
|
||||||
|
|
||||||
Alternatively, you can use Auth Keys to register your machines:
|
|
||||||
|
|
||||||
1. Create an authkey
|
|
||||||
|
|
||||||
```shell
|
|
||||||
headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
|
||||||
```
|
|
||||||
|
|
||||||
or docker:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
docker run -v $(pwd)/private.key:/private.key -v $(pwd)/config.json:/config.json -v$(pwd)/derp.yaml:/derp.yaml -v $(pwd)/db.sqlite:/db.sqlite headscale/headscale:x.x.x headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
|
||||||
```
|
|
||||||
|
|
||||||
or if your server is already running in docker:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
docker exec <container_name> headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Use the authkey from your machine to register it
|
|
||||||
```shell
|
|
||||||
tailscale up --login-server YOUR_HEADSCALE_URL --authkey YOURAUTHKEY
|
|
||||||
```
|
|
||||||
|
|
||||||
If you create an authkey with the `--ephemeral` flag, that key will create ephemeral nodes. This implies that `--reusable` is true.
|
|
||||||
|
|
||||||
Please bear in mind that all the commands from headscale support adding `-o json` or `-o json-line` to get a nicely JSON-formatted output.
|
|
||||||
|
|
||||||
## Configuration reference
|
|
||||||
|
|
||||||
Headscale's configuration file is named `config.json` or `config.yaml`. Headscale will look for it in `/etc/headscale`, `~/.headscale` and finally the directory from where the Headscale binary is executed.
|
|
||||||
|
|
||||||
```
|
|
||||||
"server_url": "http://192.168.1.12:8080",
|
|
||||||
"listen_addr": "0.0.0.0:8080",
|
|
||||||
"ip_prefix": "100.64.0.0/10"
|
|
||||||
```
|
|
||||||
|
|
||||||
`server_url` is the external URL via which Headscale is reachable. `listen_addr` is the IP address and port the Headscale program should listen on. `ip_prefix` is the IP prefix (range) in which IP addresses for nodes will be allocated (default 100.64.0.0/10, e.g., 192.168.4.0/24, 10.0.0.0/8)
|
|
||||||
|
|
||||||
```
|
|
||||||
"log_level": "debug"
|
|
||||||
```
|
|
||||||
|
|
||||||
`log_level` can be used to set the Log level for Headscale, it defaults to `debug`, and the available levels are: `trace`, `debug`, `info`, `warn` and `error`.
|
|
||||||
|
|
||||||
```
|
|
||||||
"private_key_path": "private.key",
|
|
||||||
```
|
|
||||||
|
|
||||||
`private_key_path` is the path to the Wireguard private key. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
|
||||||
|
|
||||||
```
|
|
||||||
"derp_map_path": "derp.yaml",
|
|
||||||
```
|
|
||||||
|
|
||||||
`derp_map_path` is the path to the [DERP](https://pkg.go.dev/tailscale.com/derp) map file. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
|
||||||
|
|
||||||
```
|
|
||||||
"ephemeral_node_inactivity_timeout": "30m",
|
|
||||||
```
|
|
||||||
|
|
||||||
`ephemeral_node_inactivity_timeout` is the timeout after which inactive ephemeral node records will be deleted from the database. The default is 30 minutes. This value must be higher than 65 seconds (the keepalive timeout for the HTTP long poll is 60 seconds, plus a few seconds to avoid race conditions).
|
|
||||||
|
|
||||||
```
|
|
||||||
"db_host": "localhost",
|
|
||||||
"db_port": 5432,
|
|
||||||
"db_name": "headscale",
|
|
||||||
"db_user": "foo",
|
|
||||||
"db_pass": "bar",
|
|
||||||
```
|
|
||||||
|
|
||||||
The fields starting with `db_` are used for the PostgreSQL connection information.
|
|
||||||
|
|
||||||
### Running the service via TLS (optional)
|
|
||||||
|
|
||||||
```
|
|
||||||
"tls_cert_path": ""
|
|
||||||
"tls_key_path": ""
|
|
||||||
```
|
|
||||||
|
|
||||||
Headscale can be configured to expose its web service via TLS. To configure the certificate and key file manually, set the `tls_cert_path` and `tls_cert_path` configuration parameters. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
|
||||||
|
|
||||||
```
|
|
||||||
"tls_letsencrypt_hostname": "",
|
|
||||||
"tls_letsencrypt_listen": ":http",
|
|
||||||
"tls_letsencrypt_cache_dir": ".cache",
|
|
||||||
"tls_letsencrypt_challenge_type": "HTTP-01",
|
|
||||||
```
|
|
||||||
|
|
||||||
To get a certificate automatically via [Let's Encrypt](https://letsencrypt.org/), set `tls_letsencrypt_hostname` to the desired certificate hostname. This name must resolve to the IP address(es) Headscale is reachable on (i.e., it must correspond to the `server_url` configuration parameter). The certificate and Let's Encrypt account credentials will be stored in the directory configured in `tls_letsencrypt_cache_dir`. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from. The certificate will automatically be renewed as needed.
|
|
||||||
|
|
||||||
#### Challenge type HTTP-01
|
|
||||||
|
|
||||||
The default challenge type `HTTP-01` requires that Headscale is reachable on port 80 for the Let's Encrypt automated validation, in addition to whatever port is configured in `listen_addr`. By default, Headscale listens on port 80 on all local IPs for Let's Encrypt automated validation.
|
|
||||||
|
|
||||||
If you need to change the ip and/or port used by Headscale for the Let's Encrypt validation process, set `tls_letsencrypt_listen` to the appropriate value. This can be handy if you are running Headscale as a non-root user (or can't run `setcap`). Keep in mind, however, that Let's Encrypt will _only_ connect to port 80 for the validation callback, so if you change `tls_letsencrypt_listen` you will also need to configure something else (e.g. a firewall rule) to forward the traffic from port 80 to the ip:port combination specified in `tls_letsencrypt_listen`.
|
|
||||||
|
|
||||||
#### Challenge type TLS-ALPN-01
|
|
||||||
|
|
||||||
Alternatively, `tls_letsencrypt_challenge_type` can be set to `TLS-ALPN-01`. In this configuration, Headscale listens on the ip:port combination defined in `listen_addr`. Let's Encrypt will _only_ connect to port 443 for the validation callback, so if `listen_addr` is not set to port 443, something else (e.g. a firewall rule) will be required to forward the traffic from port 443 to the ip:port combination specified in `listen_addr`.
|
|
||||||
|
|
||||||
### Policy ACLs
|
|
||||||
|
|
||||||
Headscale implements the same policy ACLs as Tailscale.com, adapted to the self-hosted environment.
|
|
||||||
|
|
||||||
For instance, instead of referring to users when defining groups you must
|
|
||||||
use namespaces (which are the equivalent to user/logins in Tailscale.com).
|
|
||||||
|
|
||||||
Please check https://tailscale.com/kb/1018/acls/, and `./tests/acls/` in this repo for working examples.
|
|
||||||
|
|
||||||
### Apple devices
|
|
||||||
|
|
||||||
An endpoint with information on how to connect your Apple devices (currently macOS only) is available at `/apple` on your running instance.
|
|
||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
1. We have nothing to do with Tailscale, or Tailscale Inc.
|
1. We have nothing to do with Tailscale, or Tailscale Inc.
|
||||||
2. The purpose of writing this was to learn how Tailscale works.
|
2. The purpose of writing this was to learn how Tailscale works.
|
||||||
|
|
||||||
## More on Tailscale
|
|
||||||
|
|
||||||
- https://tailscale.com/blog/how-tailscale-works/
|
## Contributors
|
||||||
- https://tailscale.com/blog/tailscale-key-management/
|
|
||||||
- https://tailscale.com/blog/an-unlikely-database-migration/
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ func (*Suite) TestPostgresConfigLoading(c *check.C) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Symlink the example config file
|
// Symlink the example config file
|
||||||
err = os.Symlink(filepath.Clean(path+"/../../config.json.postgres.example"), filepath.Join(tmpDir, "config.json"))
|
err = os.Symlink(filepath.Clean(path+"/../../config.yaml.postgres.example"), filepath.Join(tmpDir, "config.yaml"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.Fatal(err)
|
c.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -74,7 +74,7 @@ func (*Suite) TestSqliteConfigLoading(c *check.C) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Symlink the example config file
|
// Symlink the example config file
|
||||||
err = os.Symlink(filepath.Clean(path+"/../../config.json.sqlite.example"), filepath.Join(tmpDir, "config.json"))
|
err = os.Symlink(filepath.Clean(path+"/../../config.yaml.sqlite.example"), filepath.Join(tmpDir, "config.yaml"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.Fatal(err)
|
c.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ func (*Suite) TestDNSConfigLoading(c *check.C) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Symlink the example config file
|
// Symlink the example config file
|
||||||
err = os.Symlink(filepath.Clean(path+"/../../config.json.sqlite.example"), filepath.Join(tmpDir, "config.json"))
|
err = os.Symlink(filepath.Clean(path+"/../../config.yaml.sqlite.example"), filepath.Join(tmpDir, "config.yaml"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.Fatal(err)
|
c.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"server_url": "http://127.0.0.1:8080",
|
|
||||||
"listen_addr": "0.0.0.0:8080",
|
|
||||||
"private_key_path": "private.key",
|
|
||||||
"derp_map_path": "derp.yaml",
|
|
||||||
"ephemeral_node_inactivity_timeout": "30m",
|
|
||||||
"db_type": "postgres",
|
|
||||||
"db_host": "localhost",
|
|
||||||
"db_port": 5432,
|
|
||||||
"db_name": "headscale",
|
|
||||||
"db_user": "foo",
|
|
||||||
"db_pass": "bar",
|
|
||||||
"acme_url": "https://acme-v02.api.letsencrypt.org/directory",
|
|
||||||
"acme_email": "",
|
|
||||||
"tls_letsencrypt_hostname": "",
|
|
||||||
"tls_letsencrypt_listen": ":http",
|
|
||||||
"tls_letsencrypt_cache_dir": ".cache",
|
|
||||||
"tls_letsencrypt_challenge_type": "HTTP-01",
|
|
||||||
"tls_cert_path": "",
|
|
||||||
"tls_key_path": "",
|
|
||||||
"acl_policy_path": "",
|
|
||||||
"dns_config": {
|
|
||||||
"nameservers": [
|
|
||||||
"1.1.1.1"
|
|
||||||
],
|
|
||||||
"domains": [],
|
|
||||||
"magic_dns": true,
|
|
||||||
"base_domain": "example.com"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"server_url": "http://127.0.0.1:8080",
|
|
||||||
"listen_addr": "0.0.0.0:8080",
|
|
||||||
"private_key_path": "private.key",
|
|
||||||
"derp_map_path": "derp.yaml",
|
|
||||||
"ephemeral_node_inactivity_timeout": "30m",
|
|
||||||
"db_type": "sqlite3",
|
|
||||||
"db_path": "db.sqlite",
|
|
||||||
"acme_url": "https://acme-v02.api.letsencrypt.org/directory",
|
|
||||||
"acme_email": "",
|
|
||||||
"tls_letsencrypt_hostname": "",
|
|
||||||
"tls_letsencrypt_listen": ":http",
|
|
||||||
"tls_letsencrypt_cache_dir": ".cache",
|
|
||||||
"tls_letsencrypt_challenge_type": "HTTP-01",
|
|
||||||
"tls_cert_path": "",
|
|
||||||
"tls_key_path": "",
|
|
||||||
"acl_policy_path": "",
|
|
||||||
"dns_config": {
|
|
||||||
"nameservers": [
|
|
||||||
"1.1.1.1"
|
|
||||||
],
|
|
||||||
"domains": [],
|
|
||||||
"magic_dns": true,
|
|
||||||
"base_domain": "example.com"
|
|
||||||
}
|
|
||||||
}
|
|
30
config.yaml.postgres.example
Normal file
30
config.yaml.postgres.example
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
server_url: http://127.0.0.1:8080
|
||||||
|
listen_addr: 0.0.0.0:8080
|
||||||
|
private_key_path: private.key
|
||||||
|
derp_map_path: derp.yaml
|
||||||
|
ephemeral_node_inactivity_timeout: 30m
|
||||||
|
|
||||||
|
# Postgres config
|
||||||
|
db_type: postgres
|
||||||
|
db_host: localhost
|
||||||
|
db_port: 5432
|
||||||
|
db_name: headscale
|
||||||
|
db_user: foo
|
||||||
|
db_pass: bar
|
||||||
|
|
||||||
|
acme_url: https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
acme_email: ''
|
||||||
|
tls_letsencrypt_hostname: ''
|
||||||
|
tls_letsencrypt_listen: ":http"
|
||||||
|
tls_letsencrypt_cache_dir: ".cache"
|
||||||
|
tls_letsencrypt_challenge_type: HTTP-01
|
||||||
|
tls_cert_path: ''
|
||||||
|
tls_key_path: ''
|
||||||
|
acl_policy_path: ''
|
||||||
|
dns_config:
|
||||||
|
nameservers:
|
||||||
|
- 1.1.1.1
|
||||||
|
domains: []
|
||||||
|
magic_dns: true
|
||||||
|
base_domain: example.com
|
26
config.yaml.sqlite.example
Normal file
26
config.yaml.sqlite.example
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
server_url: http://127.0.0.1:8080
|
||||||
|
listen_addr: 0.0.0.0:8080
|
||||||
|
private_key_path: private.key
|
||||||
|
derp_map_path: derp.yaml
|
||||||
|
ephemeral_node_inactivity_timeout: 30m
|
||||||
|
|
||||||
|
# SQLite config (uncomment it if you want to use SQLite)
|
||||||
|
db_type: sqlite3
|
||||||
|
db_path: db.sqlite
|
||||||
|
|
||||||
|
acme_url: https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
acme_email: ''
|
||||||
|
tls_letsencrypt_hostname: ''
|
||||||
|
tls_letsencrypt_listen: ":http"
|
||||||
|
tls_letsencrypt_cache_dir: ".cache"
|
||||||
|
tls_letsencrypt_challenge_type: HTTP-01
|
||||||
|
tls_cert_path: ''
|
||||||
|
tls_key_path: ''
|
||||||
|
acl_policy_path: ''
|
||||||
|
dns_config:
|
||||||
|
nameservers:
|
||||||
|
- 1.1.1.1
|
||||||
|
domains: []
|
||||||
|
magic_dns: true
|
||||||
|
base_domain: example.com
|
80
docs/Configuration.md
Normal file
80
docs/Configuration.md
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
# Configuration reference
|
||||||
|
|
||||||
|
Headscale will look for a configuration file named `config.yaml` (or `config.json`) in the following order:
|
||||||
|
|
||||||
|
- `/etc/headscale`
|
||||||
|
- `~/.headscale`
|
||||||
|
- current working directory
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
server_url: http://headscale.mydomain.net
|
||||||
|
listen_addr: 0.0.0.0:8080
|
||||||
|
ip_prefix: 100.64.0.0/10
|
||||||
|
disable_check_updates: false
|
||||||
|
```
|
||||||
|
|
||||||
|
`server_url` is the external URL via which Headscale is reachable. `listen_addr` is the IP address and port the Headscale program should listen on. `ip_prefix` is the IP prefix (range) in which IP addresses for nodes will be allocated (default 100.64.0.0/10, e.g., 192.168.4.0/24, 10.0.0.0/8). `disable_check_updates` disables the automatic check for updates.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
log_level: debug
|
||||||
|
```
|
||||||
|
|
||||||
|
`log_level` can be used to set the Log level for Headscale, it defaults to `debug`, and the available levels are: `trace`, `debug`, `info`, `warn` and `error`.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
private_key_path: private.key
|
||||||
|
```
|
||||||
|
|
||||||
|
`private_key_path` is the path to the Wireguard private key. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
derp_map_path: derp.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
`derp_map_path` is the path to the [DERP](https://pkg.go.dev/tailscale.com/derp) map file. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
ephemeral_node_inactivity_timeout": "30m"
|
||||||
|
```
|
||||||
|
|
||||||
|
`ephemeral_node_inactivity_timeout` is the timeout after which inactive ephemeral node records will be deleted from the database. The default is 30 minutes. This value must be higher than 65 seconds (the keepalive timeout for the HTTP long poll is 60 seconds, plus a few seconds to avoid race conditions).
|
||||||
|
|
||||||
|
PostgresSQL
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
db_host: localhost
|
||||||
|
db_port: 5432
|
||||||
|
db_name: headscale
|
||||||
|
db_user: foo
|
||||||
|
db_pass: bar
|
||||||
|
```
|
||||||
|
|
||||||
|
SQLite
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
db_type: sqlite3
|
||||||
|
db_path: db.sqlite
|
||||||
|
```
|
||||||
|
|
||||||
|
The fields starting with `db_` are used for the DB connection information.
|
||||||
|
|
||||||
|
### TLS configuration
|
||||||
|
|
||||||
|
Please check [`TLS.md`](TLS.md).
|
||||||
|
|
||||||
|
### DNS configuration
|
||||||
|
|
||||||
|
Please refer to [`DNS.md`](DNS.md).
|
||||||
|
|
||||||
|
### Policy ACLs
|
||||||
|
|
||||||
|
Headscale implements the same policy ACLs as Tailscale.com, adapted to the self-hosted environment.
|
||||||
|
|
||||||
|
For instance, instead of referring to users when defining groups you must
|
||||||
|
use namespaces (which are the equivalent to user/logins in Tailscale.com).
|
||||||
|
|
||||||
|
Please check https://tailscale.com/kb/1018/acls/, and `./tests/acls/` in this repo for working examples.
|
||||||
|
|
||||||
|
### Apple devices
|
||||||
|
|
||||||
|
An endpoint with information on how to connect your Apple devices (currently macOS only) is available at `/apple` on your running instance.
|
21
docs/DNS.md
21
docs/DNS.md
|
@ -1,13 +1,12 @@
|
||||||
# DNS in Headscale
|
# DNS in headscale
|
||||||
|
|
||||||
Headscale supports Tailscale's DNS configuration and MagicDNS. Please have a look to their KB to better understand what this means:
|
headscale supports Tailscale's DNS configuration and MagicDNS. Please have a look to their KB to better understand what this means:
|
||||||
|
|
||||||
- https://tailscale.com/kb/1054/dns/
|
- https://tailscale.com/kb/1054/dns/
|
||||||
- https://tailscale.com/kb/1081/magicdns/
|
- https://tailscale.com/kb/1081/magicdns/
|
||||||
- https://tailscale.com/blog/2021-09-private-dns-with-magicdns/
|
- https://tailscale.com/blog/2021-09-private-dns-with-magicdns/
|
||||||
|
|
||||||
Long story short, you can define the DNS servers you want to use in your tailnets, activate MagicDNS (so you don't have to remember the IP addresses of your nodes), define search domains, as well as predefined hosts. Headscale will inject that settings into your nodes.
|
Long story short, you can define the DNS servers you want to use in your tailnets, activate MagicDNS (so you don't have to remember the IP addresses of your nodes), define search domains, as well as predefined hosts. headscale will inject that settings into your nodes.
|
||||||
|
|
||||||
|
|
||||||
## Configuration reference
|
## Configuration reference
|
||||||
|
|
||||||
|
@ -19,20 +18,20 @@ listen_addr: 0.0.0.0:8001
|
||||||
private_key_path: private.key
|
private_key_path: private.key
|
||||||
dns_config:
|
dns_config:
|
||||||
nameservers:
|
nameservers:
|
||||||
- 1.1.1.1
|
|
||||||
- 8.8.8.8
|
|
||||||
restricted_nameservers:
|
|
||||||
foo.bar.com:
|
|
||||||
- 1.1.1.1
|
|
||||||
darp.headscale.net:
|
|
||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
- 8.8.8.8
|
- 8.8.8.8
|
||||||
|
restricted_nameservers:
|
||||||
|
foo.bar.com:
|
||||||
|
- 1.1.1.1
|
||||||
|
darp.headscale.net:
|
||||||
|
- 1.1.1.1
|
||||||
|
- 8.8.8.8
|
||||||
domains: []
|
domains: []
|
||||||
magic_dns: true
|
magic_dns: true
|
||||||
base_domain: example.com
|
base_domain: example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
- `nameservers`: The list of DNS servers to use.
|
- `nameservers`: The list of DNS servers to use.
|
||||||
- `domains`: Search domains to inject.
|
- `domains`: Search domains to inject.
|
||||||
- `magic_dns`: Whether to use [MagicDNS](https://tailscale.com/kb/1081/magicdns/). Only works if there is at least a nameserver defined.
|
- `magic_dns`: Whether to use [MagicDNS](https://tailscale.com/kb/1081/magicdns/). Only works if there is at least a nameserver defined.
|
||||||
- `base_domain`: Defines the base domain to create the hostnames for MagicDNS. `base_domain` must be a FQDNs, without the trailing dot. The FQDN of the hosts will be `hostname.namespace.base_domain` (e.g., _myhost.mynamespace.example.com_).
|
- `base_domain`: Defines the base domain to create the hostnames for MagicDNS. `base_domain` must be a FQDNs, without the trailing dot. The FQDN of the hosts will be `hostname.namespace.base_domain` (e.g., _myhost.mynamespace.example.com_).
|
||||||
|
|
3
docs/Glossary.md
Normal file
3
docs/Glossary.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Glossary
|
||||||
|
|
||||||
|
- Namespace: Collection of Taiscale nodes that can see each other. In Tailscale.com is called Tailnet.
|
149
docs/Running.md
Normal file
149
docs/Running.md
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
# Running headscale
|
||||||
|
|
||||||
|
1. Download the headscale binary https://github.com/juanfont/headscale/releases, and place it somewhere in your $PATH or use the docker container
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker pull headscale/headscale:x.x.x
|
||||||
|
```
|
||||||
|
|
||||||
|
<!--
|
||||||
|
or
|
||||||
|
```shell
|
||||||
|
docker pull ghrc.io/juanfont/headscale:x.x.x
|
||||||
|
``` -->
|
||||||
|
|
||||||
|
2. (Optional, you can also use SQLite) Get yourself a PostgreSQL DB running
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker run --name headscale \
|
||||||
|
-e POSTGRES_DB=headscale
|
||||||
|
-e POSTGRES_USER=foo \
|
||||||
|
-e POSTGRES_PASSWORD=bar \
|
||||||
|
-p 5432:5432 \
|
||||||
|
-d postgres
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Create a WireGuard private key and headscale configuration
|
||||||
|
|
||||||
|
```shell
|
||||||
|
wg genkey > private.key
|
||||||
|
|
||||||
|
cp config.yaml.example config.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Create a namespace
|
||||||
|
|
||||||
|
```shell
|
||||||
|
headscale namespaces create myfirstnamespace
|
||||||
|
```
|
||||||
|
|
||||||
|
or docker:
|
||||||
|
|
||||||
|
the db.sqlite mount is only needed if you use sqlite
|
||||||
|
|
||||||
|
```shell
|
||||||
|
touch db.sqlite
|
||||||
|
docker run \
|
||||||
|
-v $(pwd)/private.key:/private.key \
|
||||||
|
-v $(pwd)/config.json:/config.json \
|
||||||
|
-v $(pwd)/derp.yaml:/derp.yaml \
|
||||||
|
-v $(pwd)/db.sqlite:/db.sqlite \
|
||||||
|
-p 127.0.0.1:8080:8080 \
|
||||||
|
headscale/headscale:x.x.x \
|
||||||
|
headscale namespaces create myfirstnamespace
|
||||||
|
```
|
||||||
|
|
||||||
|
or if your server is already running in docker:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker exec <container_name> headscale create myfirstnamespace
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Run the server
|
||||||
|
|
||||||
|
```shell
|
||||||
|
headscale serve
|
||||||
|
```
|
||||||
|
|
||||||
|
or docker:
|
||||||
|
|
||||||
|
the db.sqlite mount is only needed if you use sqlite
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker run \
|
||||||
|
-v $(pwd)/private.key:/private.key \
|
||||||
|
-v $(pwd)/config.json:/config.json \
|
||||||
|
-v $(pwd)/derp.yaml:/derp.yaml \
|
||||||
|
-v $(pwd)/db.sqlite:/db.sqlite \
|
||||||
|
-p 127.0.0.1:8080:8080 \
|
||||||
|
headscale/headscale:x.x.x headscale serve
|
||||||
|
```
|
||||||
|
|
||||||
|
6. If you used tailscale.com before in your nodes, make sure you clear the tailscaled data folder
|
||||||
|
|
||||||
|
```shell
|
||||||
|
systemctl stop tailscaled
|
||||||
|
rm -fr /var/lib/tailscale
|
||||||
|
systemctl start tailscaled
|
||||||
|
```
|
||||||
|
|
||||||
|
7. Add your first machine
|
||||||
|
|
||||||
|
```shell
|
||||||
|
tailscale up --login-server YOUR_HEADSCALE_URL
|
||||||
|
```
|
||||||
|
|
||||||
|
8. Navigate to the URL you will get with `tailscale up`, where you'll find your machine key.
|
||||||
|
|
||||||
|
9. In the server, register your machine to a namespace with the CLI
|
||||||
|
```shell
|
||||||
|
headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
||||||
|
```
|
||||||
|
or docker:
|
||||||
|
```shell
|
||||||
|
docker run \
|
||||||
|
-v $(pwd)/private.key:/private.key \
|
||||||
|
-v $(pwd)/config.json:/config.json \
|
||||||
|
-v $(pwd)/derp.yaml:/derp.yaml \
|
||||||
|
headscale/headscale:x.x.x \
|
||||||
|
headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
||||||
|
```
|
||||||
|
or if your server is already running in docker:
|
||||||
|
```shell
|
||||||
|
docker exec <container_name> headscale -n myfirstnamespace nodes register YOURMACHINEKEY
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, you can use Auth Keys to register your machines:
|
||||||
|
|
||||||
|
1. Create an authkey
|
||||||
|
|
||||||
|
```shell
|
||||||
|
headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
||||||
|
```
|
||||||
|
|
||||||
|
or docker:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker run \
|
||||||
|
-v $(pwd)/private.key:/private.key \
|
||||||
|
-v $(pwd)/config.json:/config.json \
|
||||||
|
-v$(pwd)/derp.yaml:/derp.yaml \
|
||||||
|
-v $(pwd)/db.sqlite:/db.sqlite \
|
||||||
|
headscale/headscale:x.x.x \
|
||||||
|
headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
||||||
|
```
|
||||||
|
|
||||||
|
or if your server is already running in docker:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker exec <container_name> headscale -n myfirstnamespace preauthkeys create --reusable --expiration 24h
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Use the authkey from your machine to register it
|
||||||
|
```shell
|
||||||
|
tailscale up --login-server YOUR_HEADSCALE_URL --authkey YOURAUTHKEY
|
||||||
|
```
|
||||||
|
|
||||||
|
If you create an authkey with the `--ephemeral` flag, that key will create ephemeral nodes. This implies that `--reusable` is true.
|
||||||
|
|
||||||
|
Please bear in mind that all headscale commands support adding `-o json` or `-o json-line` to get nicely JSON-formatted output.
|
27
docs/TLS.md
Normal file
27
docs/TLS.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# Running the service via TLS (optional)
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
tls_letsencrypt_hostname: ""
|
||||||
|
tls_letsencrypt_listen: ":http"
|
||||||
|
tls_letsencrypt_cache_dir: ".cache"
|
||||||
|
tls_letsencrypt_challenge_type: HTTP-01
|
||||||
|
```
|
||||||
|
|
||||||
|
To get a certificate automatically via [Let's Encrypt](https://letsencrypt.org/), set `tls_letsencrypt_hostname` to the desired certificate hostname. This name must resolve to the IP address(es) headscale is reachable on (i.e., it must correspond to the `server_url` configuration parameter). The certificate and Let's Encrypt account credentials will be stored in the directory configured in `tls_letsencrypt_cache_dir`. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from. The certificate will automatically be renewed as needed.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
tls_cert_path: ""
|
||||||
|
tls_key_path: ""
|
||||||
|
```
|
||||||
|
|
||||||
|
headscale can also be configured to expose its web service via TLS. To configure the certificate and key file manually, set the `tls_cert_path` and `tls_cert_path` configuration parameters. If the path is relative, it will be interpreted as relative to the directory the configuration file was read from.
|
||||||
|
|
||||||
|
## Challenge type HTTP-01
|
||||||
|
|
||||||
|
The default challenge type `HTTP-01` requires that headscale is reachable on port 80 for the Let's Encrypt automated validation, in addition to whatever port is configured in `listen_addr`. By default, headscale listens on port 80 on all local IPs for Let's Encrypt automated validation.
|
||||||
|
|
||||||
|
If you need to change the ip and/or port used by headscale for the Let's Encrypt validation process, set `tls_letsencrypt_listen` to the appropriate value. This can be handy if you are running headscale as a non-root user (or can't run `setcap`). Keep in mind, however, that Let's Encrypt will _only_ connect to port 80 for the validation callback, so if you change `tls_letsencrypt_listen` you will also need to configure something else (e.g. a firewall rule) to forward the traffic from port 80 to the ip:port combination specified in `tls_letsencrypt_listen`.
|
||||||
|
|
||||||
|
## Challenge type TLS-ALPN-01
|
||||||
|
|
||||||
|
Alternatively, `tls_letsencrypt_challenge_type` can be set to `TLS-ALPN-01`. In this configuration, headscale listens on the ip:port combination defined in `listen_addr`. Let's Encrypt will _only_ connect to port 443 for the validation callback, so if `listen_addr` is not set to port 443, something else (e.g. a firewall rule) will be required to forward the traffic from port 443 to the ip:port combination specified in `listen_addr`.
|
|
@ -1,7 +1,7 @@
|
||||||
# Deploying Headscale on Kubernetes
|
# Deploying headscale on Kubernetes
|
||||||
|
|
||||||
This directory contains [Kustomize](https://kustomize.io) templates that deploy
|
This directory contains [Kustomize](https://kustomize.io) templates that deploy
|
||||||
Headscale in various configurations.
|
headscale in various configurations.
|
||||||
|
|
||||||
These templates currently support Rancher k3s. Other clusters may require
|
These templates currently support Rancher k3s. Other clusters may require
|
||||||
adaptation, especially around volume claims and ingress.
|
adaptation, especially around volume claims and ingress.
|
||||||
|
@ -72,10 +72,10 @@ Usage:
|
||||||
|
|
||||||
Available Commands:
|
Available Commands:
|
||||||
help Help about any command
|
help Help about any command
|
||||||
namespace Manage the namespaces of Headscale
|
namespace Manage the namespaces of headscale
|
||||||
node Manage the nodes of Headscale
|
node Manage the nodes of headscale
|
||||||
preauthkey Handle the preauthkeys in Headscale
|
preauthkey Handle the preauthkeys in headscale
|
||||||
routes Manage the routes of Headscale
|
routes Manage the routes of headscale
|
||||||
serve Launches the headscale server
|
serve Launches the headscale server
|
||||||
version Print the version.
|
version Print the version.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue