2023-09-27 17:50:33 +02:00
|
|
|
# References
|
|
|
|
|
|
|
|
- https://goauthentik.io/docs/installation/
|
2023-09-29 11:54:17 +02:00
|
|
|
- https://blog.lrvt.de/authentik-traefik-azure-ad/
|
|
|
|
|
|
|
|
# Notes
|
|
|
|
|
2024-11-13 23:01:30 +01:00
|
|
|
Adjust the `.env` file with your private secrets and spawn up the stack:
|
2024-09-26 09:47:25 +02:00
|
|
|
|
|
|
|
````
|
|
|
|
docker compose up -d
|
|
|
|
````
|
|
|
|
|
|
|
|
After spawning up the Authentik stack, you will be greeted by Authentik's login dashboard. However, you have to onboard an admin user first.
|
2023-09-29 11:54:17 +02:00
|
|
|
|
|
|
|
This is done by visiting the following URL:
|
|
|
|
|
|
|
|
````
|
2024-09-26 09:48:50 +02:00
|
|
|
# with TLS reverse proxy
|
|
|
|
https://<hostname>/if/flow/initial-setup/
|
|
|
|
|
2024-09-26 09:49:08 +02:00
|
|
|
# without TLS reverse proxy
|
2024-09-26 09:48:50 +02:00
|
|
|
https://<hostname>:9000/if/flow/initial-setup/
|
2023-09-29 11:54:17 +02:00
|
|
|
````
|