574 lines
19 KiB
Markdown
574 lines
19 KiB
Markdown
---
|
||
navigation: true
|
||
title: Authentik
|
||
main:
|
||
fluid: false
|
||
---
|
||
:ellipsis{left=0px width=40rem top=10rem blur=140px}
|
||
# Authentik
|
||
|
||
::alert{type="info"}
|
||
🎯 __Objectives:__
|
||
- Install and expose Authentik
|
||
- Configure Multi-Factor Authentication (MFA)
|
||
- Protect a native app or an app behind a reverse proxy
|
||
::
|
||
|
||
[Authentik](https://goauthentik.io) is a single sign-on (SSO) tool that allows you to log in once to all platforms compatible with OpenID. It can also secure access to your exposed services by injecting itself via SWAG into requests to those services.
|
||
|
||
For example, if you're exposing Dockge online at `dockge.mydomain.com`, you’ll first land on an Authentik login page when accessing it. If you've already authenticated with another Authentik-protected service, you won’t need to log in again. This allows you to authenticate only once per day for all protected services.
|
||
|
||
Authentik also supports multi-factor authentication, including TOTP (a code generated by the authentication app of your choice). Additionally, it allows login through Microsoft or Google accounts, provided you've configured one of those applications.
|
||
|
||
It's a great alternative to VPNs for securely exposing services, especially ones that lack MFA or login protection (e.g., the SWAG dashboard).
|
||
|
||
Authentik has [extensive documentation](https://docs.goauthentik.io/docs/installation/docker-compose) and [great tutorials from Cooptonian](https://www.youtube.com/@cooptonian). Here, we’ll cover the basics using Dockge as an example.
|
||
|
||
There are two main modes you should know:
|
||
|
||
- The first allows apps with native support for OpenID-compatible SSO to connect directly to Authentik. This is the preferred method, as the app itself decides what’s public and what’s protected.
|
||
|
||

|
||
|
||
- The second method injects Authentik authentication through SWAG before reaching the target service.
|
||
|
||

|
||
|
||
Both modes can be configured on a per-application basis.
|
||
|
||
## Installation
|
||
---
|
||
Folder structure:
|
||
```console
|
||
root
|
||
└── docker
|
||
└── authentik
|
||
├── .env
|
||
├── compose.yml
|
||
├── media
|
||
├── certs
|
||
├── custom-template
|
||
└── ssh
|
||
```
|
||
|
||
Create the folders:
|
||
|
||
```shell
|
||
sudo mkdir -p /docker/authentik/media /docker/authentik/certs /docker/authentik/custom-template /docker/authentik/ssh
|
||
```
|
||
|
||
Navigate to the `authentik` folder and generate a password and secret key to include in the `.env` file:
|
||
|
||
```shell
|
||
sudo echo "PG_PASS=$(openssl rand 36 | base64)" >> .env
|
||
sudo echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64)" >> .env
|
||
```
|
||
|
||
::alert{type="info"}
|
||
:::list{type="info"}
|
||
- To generate the keys, we created the folders ahead of deployment using Dockge. Dockge will prevent you from creating a stack with the same name in these folders unless a `compose.yml` file exists. So, create an empty `compose.yml` so it appears as an inactive stack:
|
||
:::
|
||
```shell
|
||
sudo vi /docker/authentik/compose.yml
|
||
::
|
||
|
||
Open Dockge and search for "authentik" in the inactive stacks.
|
||
Name the stack `authentik` and paste the following configuration, replacing `{AUTHENTIK_TAG:-2025.2.1}`{lang=properties} with [the latest version of Authentik](https://version-2024-6.goauthentik.io/docs/releases).
|
||
|
||
```yaml
|
||
---
|
||
services:
|
||
|
||
postgresql:
|
||
image: docker.io/library/postgres:16-alpine
|
||
container_name: authentik-postgresql
|
||
restart: unless-stopped
|
||
healthcheck:
|
||
test:
|
||
- CMD-SHELL
|
||
- pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}
|
||
start_period: 20s
|
||
interval: 30s
|
||
retries: 5
|
||
timeout: 5s
|
||
volumes:
|
||
- database:/var/lib/postgresql/data
|
||
environment:
|
||
POSTGRES_PASSWORD: ${PG_PASS:?database password required}
|
||
POSTGRES_USER: ${PG_USER:-authentik}
|
||
POSTGRES_DB: ${PG_DB:-authentik}
|
||
env_file:
|
||
- .env
|
||
|
||
redis:
|
||
image: docker.io/library/redis:alpine
|
||
container_name: authentik-redis
|
||
command: --save 60 1 --loglevel warning
|
||
restart: unless-stopped
|
||
healthcheck:
|
||
test:
|
||
- CMD-SHELL
|
||
- redis-cli ping | grep PONG
|
||
start_period: 20s
|
||
interval: 30s
|
||
retries: 5
|
||
timeout: 3s
|
||
volumes:
|
||
- redis:/data
|
||
|
||
server:
|
||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.1}
|
||
container_name: authentik-server
|
||
restart: unless-stopped
|
||
command: server
|
||
environment:
|
||
AUTHENTIK_REDIS__HOST: redis
|
||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||
volumes:
|
||
- ./media:/media
|
||
- ./custom-templates:/templates
|
||
- ./ssh:/authentik/.ssh
|
||
env_file:
|
||
- .env
|
||
ports:
|
||
- ${COMPOSE_PORT_HTTP:-9000}:9000
|
||
- ${COMPOSE_PORT_HTTPS:-9443}:9443
|
||
depends_on:
|
||
- postgresql
|
||
- redis
|
||
|
||
worker:
|
||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.1}
|
||
container_name: authentik-worker
|
||
restart: unless-stopped
|
||
command: worker
|
||
environment:
|
||
AUTHENTIK_REDIS__HOST: redis
|
||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||
# `user: root` and the docker socket volume are optional.
|
||
# See more for the docker socket integration here:
|
||
# https://goauthentik.io/docs/outposts/integrations/docker
|
||
# Removing `user: root` also prevents the worker from fixing the permissions
|
||
# on the mounted folders, so when removing this make sure the folders have the correct UID/GID
|
||
# (1000:1000 by default)
|
||
user: root
|
||
volumes:
|
||
- /var/run/docker.sock:/var/run/docker.sock
|
||
- ./media:/media
|
||
- ./certs:/certs
|
||
- ./custom-templates:/templates
|
||
- ./ssh:/authentik/.ssh
|
||
env_file:
|
||
- .env
|
||
depends_on:
|
||
- postgresql
|
||
- redis
|
||
|
||
volumes:
|
||
database:
|
||
driver: local
|
||
redis:
|
||
driver: local
|
||
```
|
||
|
||
In the `.env` file, the `PG_PASS` and `AUTHENTIK_SECRET_KEY` variables are already set.
|
||
Deploy the stack.
|
||
|
||
You can then begin the initial setup by visiting:
|
||
`http://yourserverip:9000/if/flow/initial-setup/`
|
||
|
||
::alert{type="warning"}
|
||
:::list{type="warning"}
|
||
- __Warning:__ It’s recommended to create a new admin account and **disable** the default `akadmin` account.
|
||
:::
|
||
::
|
||
|
||
## Exposing Authentik
|
||
---
|
||
To use Authentik outside your local network, you must expose it.
|
||
|
||
::alert{type="info"}
|
||
📋 __Prerequisites:__ <br/><br/>
|
||
We assume you have already created a subdomain like `auth.mydomain.com` in your [DNS zone](/general/dns), with a CNAME pointing to `mydomain.com`. Also, unless you're using [Cloudflare Zero Trust](/serveex/security/cloudflare), you must have already forwarded port `443` from your router to port `443` of your server in your [NAT rules](/general/nat).
|
||
::
|
||
|
||
Open the `authentik-server.conf` file:
|
||
|
||
::alert{type="success"}
|
||
✨ __Tip for those who dislike terminals:__
|
||
You can use [File Browser](/serveex/files/file-browser) to navigate and edit files instead of using terminal commands.
|
||
::
|
||
|
||
```shell
|
||
sudo vi /docker/swag/config/nginx/authentik-server.conf
|
||
```
|
||
|
||
Verify that the following variables are set correctly:
|
||
|
||
```nginx
|
||
set $upstream_authentik authentik-server;
|
||
proxy_pass http://$upstream_authentik:9000;
|
||
```
|
||
|
||
If not, press `i` to enter edit mode, make the necessary changes, then save and exit by pressing `Esc` followed by `:x`.
|
||
|
||
Create the `auth.subdomain.conf` file:
|
||
|
||
```shell
|
||
sudo vi /docker/swag/config/nginx/proxy-confs/auth.subdomain.conf
|
||
```
|
||
|
||
Press `i` to enter edit mode and paste the following configuration:
|
||
|
||
```nginx
|
||
## Version 2023/05/31
|
||
# Ensure your authentik container is named authentik-server
|
||
# Ensure your DNS has a CNAME for authentik
|
||
|
||
server {
|
||
listen 443 ssl;
|
||
listen [::]:443 ssl;
|
||
|
||
server_name auth.*;
|
||
|
||
include /config/nginx/ssl.conf;
|
||
|
||
client_max_body_size 0;
|
||
|
||
location / {
|
||
include /config/nginx/proxy.conf;
|
||
include /config/nginx/resolver.conf;
|
||
set $upstream_app authentik-server;
|
||
set $upstream_port 9000;
|
||
set $upstream_proto http;
|
||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||
}
|
||
|
||
location ~ (/authentik)?/api {
|
||
include /config/nginx/proxy.conf;
|
||
include /config/nginx/resolver.conf;
|
||
set $upstream_app authentik-server;
|
||
set $upstream_port 9000;
|
||
set $upstream_proto http;
|
||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||
}
|
||
}
|
||
```
|
||
|
||
Save and exit by pressing `Esc` then `:x`.
|
||
|
||
Go to Dockge, and edit the SWAG compose file to add the Authentik network:
|
||
|
||
```yaml
|
||
services:
|
||
swag:
|
||
container_name: # ...
|
||
# ...
|
||
networks: # Attach the container to the custom network
|
||
# ...
|
||
- authentik # Name of the network declared in the stack
|
||
|
||
networks: # Define the custom network
|
||
# ...
|
||
authentik: # Name of the network declared in the stack
|
||
name: authentik_default # Actual name of the external network
|
||
external: true # Indicates it's an external network
|
||
```
|
||
|
||
Restart the stack and wait for SWAG to be fully operational.
|
||
|
||
Done! You can now access Authentik via `https://auth.mydomain.com`
|
||
|
||
## Enable Multifactor Authentication
|
||
---
|
||
The main value of Authentik is using multifactor authentication for all protected apps.
|
||
|
||
- Go to `https://auth.mydomain.com`
|
||
- Log in
|
||
- Go to _Settings_
|
||
- Click the _MFA_ section
|
||
- Click _Register_
|
||
- Choose a method like _TOTP device_ (you'll need an authenticator app like Google Authenticator)
|
||
- Follow the steps
|
||
|
||
You’ll now be prompted to enter a one-time code at every login.
|
||
|
||
## Protecting a Native App
|
||
---
|
||
Authentik is natively compatible with several applications. You can find the list and [support here](https://docs.goauthentik.io/integrations/services/).
|
||
|
||
## Protecting an App via Reverse Proxy
|
||
---
|
||
SWAG lets you insert Authentik’s login page between a request and access to your service. To do this:
|
||
|
||
- Configure the authentication provider in Authentik.
|
||
- Edit the domain proxy file so SWAG can intercept the request.
|
||
|
||
Why do this when Dockge already has authentication? Because Dockge uses weak HTTP authentication. With Authentik, you get strong MFA authentication and automatic login to all apps protected by Authentik. This secures access to Dockge and other apps without needing a VPN.
|
||
|
||
### Configuring Authentik
|
||
|
||
- Go to Authentik
|
||
- Open the admin panel
|
||
- Select _Applications_ then _Create with wizard_
|
||
- Fill in the fields as shown:
|
||
|
||

|
||
|
||
- At the next step, choose "Forward authentication (single application)" and configure it as shown (flows are important):
|
||
|
||

|
||
|
||
- Next, go to the _Outposts_ menu on the left and edit _authentik Embedded Outpost_:
|
||
|
||

|
||
|
||
- Add the `dockge` application by moving it to the right column and save.
|
||
|
||
### Configuring SWAG
|
||
|
||
Edit the file `dockge.mydomain.com`:
|
||
|
||
```shell
|
||
sudo vi /docker/swag/config/nginx/proxy-confs/dockge.subdomain.conf
|
||
```
|
||
|
||
Press `i` to enter edit mode and uncomment the two lines `#include /config/nginx/authentik-server.conf;`
|
||
|
||
Press `Esc`, type `:x`, and press `Enter` to save and exit.
|
||
|
||
Done! Now when accessing `https://dockge.mydomain.com`, you’ll be redirected to the Authentik login screen.
|
||
|
||
::alert{type="success"}
|
||
✨ __Tip:__ In Dockge's settings, you can disable Dockge's authentication to avoid double login. **Warning**: this means if the port is open on your local network, there will be no authentication at all.
|
||
::
|
||
|
||
::alert{type="info"}
|
||
:::list{type="info"}
|
||
- Repeat this process for each app you want to protect (unless it has native integration with Authentik).
|
||
:::
|
||
::
|
||
|
||
Your new architecture looks like this:
|
||
|
||

|
||
|
||
## Protecting a Remote Server Service
|
||
---
|
||
For a [native application](/serveex/security/authentik/#protecting-a-native-app) (via OAuth 2.0 or other), nothing changes.
|
||
|
||
For a non-native app behind a reverse proxy, you must deploy an __Outpost__. An Outpost is a container acting as a local proxy — it's the target of your app's auth requests and the only one authorized to communicate with your Authentik API.
|
||
|
||
::alert{type="info"}
|
||
Prerequisites:
|
||
- Install [Docker](/serveex/core/docker) on the remote server hosting the service.
|
||
- If the app has no native integration, use a compatible reverse proxy. We will use [SWAG](/serveex/core/swag) here.
|
||
::
|
||
|
||
This container will forward requests to your main [Authentik](/serveex/security/authentik#authentik) instance over the internet (or your local network). The server will perform checks and respond to the Outpost, which will allow or block access accordingly.
|
||
|
||

|
||
|
||
### Configuring Authentik
|
||
|
||
Create your [providers and applications](/serveex/security/authentik/#protecting-a-native-app) as shown earlier.
|
||
|
||
Then, in the admin panel, go to _Applications > Outposts_, and create a new outpost.
|
||
|
||
Fill in as follows:
|
||
|
||
| Field | Value |
|
||
|----------------|------------------------------------------------------------------------|
|
||
| `Name` | Your preferred name |
|
||
| `Type` | `Proxy` |
|
||
| `Integration` | Leave empty |
|
||
| `Applications` | Select the applications you previously created |
|
||
|
||
In the `Advanced settings` section, clear the existing content and enter:
|
||
|
||
```yaml
|
||
log_level: info
|
||
docker_labels: null
|
||
authentik_host: https://your_authentik_server_domain/
|
||
object_naming_template: ak-outpost-%(name)s
|
||
authentik_host_insecure: false
|
||
container_image:
|
||
docker_network: null
|
||
docker_map_ports: true
|
||
docker_labels: null
|
||
```
|
||
|
||
Save and exit.
|
||
|
||
On the list of created outposts, locate the new one and click _Show details_ at the end of the line. Carefully copy the access token.
|
||
|
||
|
||
### Configuring the Remote Machine
|
||
|
||
We assume you’ve already installed [Docker](/serveex/core/docker) and [SWAG](/serveex/core/swag) on this remote machine.
|
||
|
||
On your remote machine, use [Dockge](/serveex/core/docker/#installer-dockge-pour-gérer-et-déployer-les-conteneurs) to create a stack named `authentik-outpost`.
|
||
|
||
If you haven’t installed [Dockge](/serveex/core/docker/#installer-dockge-pour-gérer-et-déployer-les-conteneurs), create a folder `/docker/authentik-outpost`, or directly via command line:
|
||
|
||
```shell
|
||
sudo mkdir -P /docker/authentik-outpost
|
||
```
|
||
|
||
::alert{type="success"}
|
||
✨ __Tip for terminal-averse users:__
|
||
You can use [File Browser](/serveex/files/file-browser) to navigate and edit your files instead of using terminal commands.
|
||
::
|
||
|
||
Create the `compose.yaml` file or paste the configuration directly into Dockge if installed.
|
||
|
||
Via command line:
|
||
|
||
```shell
|
||
sudo vi /docker/authentik-outpost/compose.yaml
|
||
```
|
||
Enter edit mode by pressing `i` and paste the following configuration, updating the version in `{AUTHENTIK_TAG:proxy:2024.2.3}`{lang=properties} to match your Authentik server version.
|
||
|
||
```yaml
|
||
version: "3.5"
|
||
services:
|
||
authentik_proxy:
|
||
container_name: authentik-outpost
|
||
image: ghcr.io/goauthentik/proxy:2024.2.3
|
||
# Optionally specify which networks the container should be
|
||
# might be needed to reach the core authentik server
|
||
restart: unless-stopped
|
||
env_file:
|
||
- .env
|
||
ports:
|
||
- 9000:9000
|
||
- 9443:9443
|
||
environment:
|
||
AUTHENTIK_HOST: ${HOST}
|
||
AUTHENTIK_INSECURE: "false"
|
||
AUTHENTIK_TOKEN: ${TOKEN}
|
||
```
|
||
|
||
Go to the SWAG stack on the remote machine (or edit directly using Dockge) and add the authentik-outpost network in the configuration file like this (see `networks` section):
|
||
|
||
```shell
|
||
sudo vi /docker/swag/compose.yaml
|
||
```
|
||
|
||
```yaml
|
||
services:
|
||
swag:
|
||
container_name: #...
|
||
# ...
|
||
networks: # Attach the container to the custom network
|
||
- authentik-outpost # Network name as declared in the stack
|
||
|
||
networks: # Define the custom network
|
||
#...
|
||
authentik-outpost: # Name of the network declared in the stack
|
||
name: authentik-outpost_default # Actual name of the external network
|
||
external: true # Marks it as an external network
|
||
```
|
||
|
||
Press `Esc`, then type `:x` and press `Enter` to save and exit.
|
||
|
||
::alert{type="info"}
|
||
:::list{type="info"}
|
||
- We assume the Dockge network name is `authentik-outpost_default`.
|
||
:::
|
||
::
|
||
|
||
If using [Dockge](/serveex/core/docker/#installer-dockge-pour-gérer-et-déployer-les-conteneurs), restart SWAG.
|
||
|
||
Otherwise, via terminal:
|
||
|
||
```shell
|
||
cd /docker/swag/
|
||
sudo docker compose up -d
|
||
```
|
||
|
||
Create (or fill using Dockge) the `.env` file in the `authentik-outpost` directory:
|
||
|
||
Via command line:
|
||
|
||
```shell
|
||
sudo vi /docker/authentik-outpost/.env
|
||
```
|
||
|
||
Enter edit mode with `i` and paste the following configuration:
|
||
|
||
```properties
|
||
HOST=
|
||
TOKEN=
|
||
```
|
||
|
||
Fill in the values:
|
||
|
||
| Variable | Value | Example |
|
||
|----------|-------|---------|
|
||
| `HOST`{lang=properties} | The URL of your Authentik server | `https://auth.domain.com` |
|
||
| `TOKEN`{lang=properties} | The previously copied access token | `Q2pVEqsTNRkJSO9SkJzU3KZ2` |
|
||
|
||
Press `Esc`, then type `:x` and press `Enter` to save and exit.
|
||
|
||
If using Dockge, deploy the stack.
|
||
|
||
Otherwise, via terminal:
|
||
|
||
```shell
|
||
cd /docker/authentik-outpost/
|
||
sudo docker compose up -d
|
||
```
|
||
|
||
The container is now running. You can verify its status from your Authentik instance admin panel under _Applications > Outposts_.
|
||
|
||
Now, let’s configure SWAG.
|
||
|
||
Open the `authentik-server.conf` file:
|
||
|
||
```shell
|
||
sudo vi /docker/swag/config/nginx/authentik-server.conf
|
||
```
|
||
|
||
In the file, press `i` to enter edit mode and change `authentik-server` to `authentik-outpost` as shown:
|
||
|
||
```nginx
|
||
set $upstream_authentik authentik-outpost;
|
||
proxy_pass http://$upstream_authentik:9000;
|
||
```
|
||
|
||
Save and exit with `Esc`, then `:x` and `Enter`.
|
||
|
||
Then configure the applications to protect as you did on your main server, whether they are [native](/serveex/security/authentik/#protecting-a-native-app) or protected via [reverse proxy](/serveex/security/authentik#protecting-an-app-via-reverse-proxy).
|
||
|
||
## Migrating an Authentik Database
|
||
---
|
||
On the source machine, dump the database:
|
||
|
||
```shell
|
||
sudo docker exec authentik-postgres pg_dump -U authentik -F t authentik > /path/to/mydb.tar
|
||
```
|
||
|
||
Then transfer it to the target machine. On the target machine, copy the file into the Docker container:
|
||
|
||
```shell
|
||
cp /path/to/mydb.tar authentik-postgres:/path/to/wherever
|
||
```
|
||
|
||
(Optional) Purge existing tables:
|
||
|
||
```shell
|
||
sudo docker exec -i authentik-postgres psql -U authentik -c "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'authentik' AND pid <> pg_backend_pid();" && sudo docker exec -i authentik-postgres psql -U authentik -d postgres -c "DROP DATABASE IF EXISTS authentik;" && sudo docker exec -i authentik-postgres psql -U authentik -d postgres -c "CREATE DATABASE authentik;"
|
||
```
|
||
|
||
Restore the database:
|
||
|
||
```shell
|
||
sudo docker exec authentik-postgresql pg_restore -U authentik -d authentik /path/to/wherever/mydb.tar
|
||
``` |