-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
website/docs: add architecture and persistence
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
- Loading branch information
Showing
3 changed files
with
49 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: Architecture | ||
--- | ||
|
||
authentik consists of a handful of compoennts, most of which are required for a functioning setup. | ||
|
||
```mermaid | ||
graph LR | ||
user(User) --> ak_server(authentik Server) | ||
ak_server --> ak_server_core(authentik Server Core) | ||
ak_server --> ak_outpost(Embedded outopst) | ||
ak_server_core --> db(PostgreSQL) | ||
ak_server_core --> cache(Redis) | ||
ak_worker(Background Worker) --> db(PostgreSQL) | ||
ak_worker(Background Worker) --> cache(Redis) | ||
``` | ||
|
||
### Server | ||
|
||
The server container consists of two sub-components, the actual server itself and the embedded outpost. Incoming requests to the server container(s) are routed by a lightweight router to either the _Core_ server or the embedded outpost. This router also handles requests for any static assets such as JavaScript and CSS files. | ||
|
||
##### Core | ||
|
||
The core sub-component handles most of authentik's logic, such as API requests, flow executions, any kind of SSO requests, etc. | ||
|
||
##### Embedded outpost | ||
|
||
Similar to [other Outposts](../outposts/index.mdx), this outposts allows using [Proxy providers](../providers/proxy/index.md) without deploying a separate outpost | ||
|
||
##### Persistence | ||
|
||
- `/media` is used to store icons and such, but not required, and if not mounted, authentik will allow you to set a URL to icons in place of a file upload | ||
|
||
### Worker | ||
|
||
This container executes background tasks, such as sending emails, the event notification system, and everything you can see on the _System Tasks_ page in the frontend. | ||
|
||
##### Persistence | ||
|
||
- `/certs` is used for authentik to import external certs, which in most cases shouldn't be used for SAML, but rather if you use authentik without a reverse proxy, this is used for the lets encrypt integration | ||
- `/templates` is used for custom email templates, and as with the other ones fully optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ module.exports = { | |
"core/tenants", | ||
"core/certificates", | ||
"core/geoip", | ||
"core/architecture", | ||
], | ||
}, | ||
{ | ||
|