Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 4815c85

Browse files
committed
add basic nginx single domain forward auth
1 parent 6e6d7e4 commit 4815c85

File tree

8 files changed

+137
-26
lines changed

8 files changed

+137
-26
lines changed

Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
.PHONY: local
2-
3-
local: local/docker-compose.yml
1+
compose-local: local/docker-compose.yml
42
cd local && docker compose up -d
53
./local/wait.sh
64

README.md

+3-20
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,9 @@
88

99
# authentik testing setups
1010

11-
Kubernetes manifests to quickly test different cluster setups with authentik.
11+
authentik docker-compose and kubernetes setups for forward auth in various configurations
1212

13-
## Run
13+
## Run (docker-compose)
1414

15-
### `make all`:
15+
`make compose-local` will setup a local docker-compose authentik install.
1616

17-
Apply common resources, in the following order:
18-
19-
- FluxCD: used to deploy helmcharts via CRDs
20-
- authentik: Install authentik with PostgreSQL and Redis
21-
- whoami: A simple application to test with
22-
23-
### `make nginx`:
24-
25-
Common resources + nginx ingress controller
26-
27-
### `make traefik`:
28-
29-
Common resources + traefik ingress controller
30-
31-
### `make remove`:
32-
33-
Remove all resources.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: '3.7'
2+
3+
networks:
4+
authentik_default:
5+
name: local_default
6+
7+
services:
8+
nginx:
9+
image: docker.io/library/nginx:1.23
10+
volumes:
11+
- ./nginx.conf:/etc/nginx/conf.d/default.conf
12+
networks:
13+
- authentik_default
14+
ports:
15+
- 80:80
16+
- 443:443
17+
whoami:
18+
image: docker.io/containous/whoami
19+
networks:
20+
- authentik_default
21+
authentik-proxy:
22+
image: ghcr.io/goauthentik/proxy:latest
23+
env_file:
24+
- ../.env
25+
restart: unless-stopped
26+
networks:
27+
- authentik_default

compose-nginx-forward_single/main.tf

+44
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,47 @@ terraform {
88

99
provider "authentik" {
1010
}
11+
12+
data "authentik_flow" "default-authorization-flow" {
13+
slug = "default-provider-authorization-implicit-consent"
14+
}
15+
16+
resource "authentik_provider_proxy" "provider" {
17+
name = "whoami"
18+
internal_host = ""
19+
external_host = "http://localhost.dev.goauthentik.io"
20+
mode = "forward_single"
21+
authorization_flow = data.authentik_flow.default-authorization-flow.id
22+
token_validity = "days=30"
23+
}
24+
25+
resource "authentik_application" "app" {
26+
name = "whoami"
27+
slug = "whoami"
28+
protocol_provider = authentik_provider_proxy.provider.id
29+
}
30+
31+
resource "authentik_outpost" "docker" {
32+
name = "docker"
33+
protocol_providers = [
34+
authentik_provider_proxy.provider.id,
35+
]
36+
config = jsonencode({
37+
authentik_host = "http://local-server-1:9000"
38+
authentik_host_browser = ""
39+
authentik_host_insecure = false
40+
container_image = null
41+
docker_labels = null
42+
docker_map_ports = false
43+
docker_network = "local_default"
44+
kubernetes_disabled_components = []
45+
kubernetes_image_pull_secrets = []
46+
kubernetes_ingress_annotations = {}
47+
kubernetes_ingress_secret_name = "authentik-outpost-tls"
48+
kubernetes_namespace = "default"
49+
kubernetes_replicas = 1
50+
kubernetes_service_type = "ClusterIP"
51+
log_level = "trace"
52+
object_naming_template = "ak-outpost-%(name)s"
53+
})
54+
}
+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
server {
2+
listen 80;
3+
server_name _;
4+
5+
# Increase buffer size for large headers
6+
# This is needed only if you get 'upstream sent too big header while reading response
7+
# header from upstream' error when trying to access an application protected by goauthentik
8+
proxy_buffers 8 16k;
9+
proxy_buffer_size 32k;
10+
11+
location / {
12+
proxy_pass http://whoami;
13+
proxy_set_header Host $host;
14+
15+
##############################
16+
# authentik-specific config
17+
##############################
18+
auth_request /outpost.goauthentik.io/auth/nginx;
19+
error_page 401 = @goauthentik_proxy_signin;
20+
auth_request_set $auth_cookie $upstream_http_set_cookie;
21+
add_header Set-Cookie $auth_cookie;
22+
23+
# translate headers from the outposts back to the actual upstream
24+
auth_request_set $authentik_username $upstream_http_x_authentik_username;
25+
auth_request_set $authentik_groups $upstream_http_x_authentik_groups;
26+
auth_request_set $authentik_email $upstream_http_x_authentik_email;
27+
auth_request_set $authentik_name $upstream_http_x_authentik_name;
28+
auth_request_set $authentik_uid $upstream_http_x_authentik_uid;
29+
30+
proxy_set_header X-authentik-username $authentik_username;
31+
proxy_set_header X-authentik-groups $authentik_groups;
32+
proxy_set_header X-authentik-email $authentik_email;
33+
proxy_set_header X-authentik-name $authentik_name;
34+
proxy_set_header X-authentik-uid $authentik_uid;
35+
}
36+
37+
# all requests to /outpost.goauthentik.io must be accessible without authentication
38+
location /outpost.goauthentik.io {
39+
proxy_pass http://authentik-proxy:9000/outpost.goauthentik.io;
40+
# ensure the host of this vserver matches your external URL you've configured
41+
# in authentik
42+
proxy_set_header Host $host;
43+
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
44+
add_header Set-Cookie $auth_cookie;
45+
auth_request_set $auth_cookie $upstream_http_set_cookie;
46+
proxy_pass_request_body off;
47+
proxy_set_header Content-Length "";
48+
}
49+
50+
# Special location for when the /auth endpoint returns a 401,
51+
# redirect to the /start URL which initiates SSO
52+
location @goauthentik_proxy_signin {
53+
internal;
54+
add_header Set-Cookie $auth_cookie;
55+
return 302 /outpost.goauthentik.io/start?rd=$request_uri;
56+
# For domain level, use the below error_page to redirect to your authentik server with the full redirect path
57+
# return 302 https://localhost/outpost.goauthentik.io/start?rd=$scheme://$http_host$request_uri;
58+
}
59+
}

compose-traefik-forward_single/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ networks:
66

77
services:
88
traefik:
9-
image: docker.io/library/traefik
9+
image: docker.io/library/traefik:v2.9
1010
networks:
1111
- authentik_default
1212
command:

compose-traefik-forward_single/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
authentik = {
4-
source = "goauthentik/authentik"
4+
source = "goauthentik/authentik"
55
}
66
}
77
}

local/wait.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
timeout 600 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:9000/api/v3/root/config/)" != "200" ]]; do sleep 5; done' || false
2+
timeout 600 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:9000/api/v3/root/config/)" != "200" ]]; do sleep 5; done' || false

0 commit comments

Comments
 (0)