You can configure Headplane using environment variables.
COOKIE_SECRET
: A secret used to sign cookies (use a relatively long and random string).HEADSCALE_URL
: The public URL of your Headscale server (not required if using the configuration file).
DEBUG
: Enable debug logging (default:false
).HOST
: The host to bind the server to (default:0.0.0.0
).PORT
: The port to bind the server to (default:3000
).CONFIG_FILE
: The path to the Headscaleconfig.yaml
(default:/etc/headscale/config.yaml
).HEADSCALE_CONFIG_UNSTRICT
: This will disable the strict configuration loader (default:false
).COOKIE_SECURE
: This option enables theSecure
flag for cookies, ensuring they are sent only over HTTPS, which helps prevent interception and enhances data security. It should be disabled when using HTTP instead of HTTPS (default:true
).LOAD_ENV_FILE
: Tell Headplane to read the.env
file and load it into the environment (default:false
).
The Docker integration allows Headplane to manage the Headscale docker container.
You'll need to provide these variables if you want to use this feature.
Keep in mind that DOCKER_SOCK
must start with a protocol (e.g., unix://
).
Secure API is currently not supported.
DOCKER_SOCK
: The protocol and path to the Docker socket (default:unix:///var/run/docker.sock
).HEADSCALE_CONTAINER
: The name of the Headscale container (required for Docker integration).
If you want to use OpenID Connect for SSO, you'll need to provide these variables. Headplane will utilize the expiry of your tokens to determine the expiry of the session. If you use the Headscale configuration integration, these are not required.
OIDC_ISSUER
: The issuer URL of your OIDC provider.OIDC_CLIENT_ID
: The client ID of your OIDC provider.OIDC_CLIENT_SECRET
: The client secret of your OIDC provider.ROOT_API_KEY
: An API key used to issue new ones for sessions (keep expiry fairly long).DISABLE_API_KEY_LOGIN
: If you want to disable API key login, set this totrue
.
Here's what an example with Authelia would look like if you used the same client for both Headscale and Headplane. Keep in mind that the recommended deployment would be putting Headplane behind /admin on a reverse proxy. If you use a different domain than the Headscale server, you'll need to make sure that Headscale responds with CORS headers.
- client_id: 'headscale'
client_name: 'Headscale and Headplane'
public: false
authorization_policy: 'two_factor'
redirect_uris:
- 'https://headscale.example.com/oidc/callback'
- 'https://headscale.example.com/admin/oidc/callback'
scopes:
- 'openid'
- 'profile'
- 'email'
userinfo_signed_response_alg: 'none'
client_secret: 'my_super_secret_client_secret'