Authentik Installation: Difference between revisions
Initial |
cats Tag: 2017 source edit |
||
Line 21: | Line 21: | ||
To start the initial setup, navigate to: <code>http://<your server's IP or hostname>:9443/if/flow/initial-setup/</code>. | To start the initial setup, navigate to: <code>http://<your server's IP or hostname>:9443/if/flow/initial-setup/</code>. | ||
[[Category:Self-hosting]] | |||
[[Category:Guides]] | |||
[[Category:Server]] | |||
[[Category:Network]] |
Revision as of 04:22, 22 September 2024
https://goauthentik.io/docs/installation/docker-compose
<syntaxhighlight lang="shell">wget https://goauthentik.io/docker-compose.yml sudo apt-get install -y pwgen echo "PG_PASS=$(pwgen -s 40 1)" >> .env echo "AUTHENTIK_SECRET_KEY=$(pwgen -s 50 1)" >> .env echo "AUTHENTIK_ERROR_REPORTING__ENABLED=true" >> .env
</syntaxhighlight>
Run Authentik Compose File
This initially installs but also is how to update settings and configs
docker-compose pull docker-compose up -d
Initial Setup
To start the initial setup, navigate to: http://<your server's IP or hostname>:9443/if/flow/initial-setup/
.