Authentik moved to charon.sticknife.com

The identity provider's hostname changed. Only AUTHENTIK_ISSUER points at it,
so the live change is one line in .env.local; this commit carries the docs and
the example, which still named the old host.

The issuer string has to match the provider's own discovery document exactly,
trailing slash and all -- a host that answers is not the same as an issuer that
validates -- so the example now says how to check it. AUTH_URL is unrelated and
stays: it is this app's address, not Authentik's.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Ryan
2026-08-15 12:40:58 +02:00
parent cd08e15625
commit 3ccae54259
3 changed files with 12 additions and 5 deletions
+8 -1
View File
@@ -10,8 +10,15 @@
DATABASE_URL=postgres://user:password@mimir/ampelos DATABASE_URL=postgres://user:password@mimir/ampelos
# --- sign-in -------------------------------------------------------------- # --- sign-in --------------------------------------------------------------
# AUTH_URL is this app's own address. The ISSUER is Authentik's, and the two
# are unrelated -- moving the identity provider does not change AUTH_URL.
AUTH_URL=https://ampelos.sticknife.com AUTH_URL=https://ampelos.sticknife.com
AUTHENTIK_ISSUER=
# Must match the "issuer" field in the provider's own discovery document
# exactly, trailing slash included, or the sign-in fails validation even though
# the host answers. Check with:
# curl -s https://<host>/application/o/<slug>/.well-known/openid-configuration
AUTHENTIK_ISSUER=https://charon.sticknife.com/application/o/ampelos/
AUTHENTIK_CLIENT_ID= AUTHENTIK_CLIENT_ID=
AUTHENTIK_CLIENT_SECRET= AUTHENTIK_CLIENT_SECRET=
+2 -2
View File
@@ -36,7 +36,7 @@ Ampelos should provide one unified control panel for media requests, watch inten
Users should be able to: Users should be able to:
- Log in through Authentik at `auth.sticknife.com`. - Log in through Authentik at `charon.sticknife.com`.
- Browse/search media in an Ombi-like interface. - Browse/search media in an Ombi-like interface.
- Add shows and movies they are interested in. - Add shows and movies they are interested in.
- Maintain a limited "Watching Now" list. - Maintain a limited "Watching Now" list.
@@ -210,7 +210,7 @@ Ampelos should own the policy and job state. The transcode agent should own the
### Authentik ### Authentik
Authentication should be delegated to Authentik at `auth.sticknife.com`. Authentication should be delegated to Authentik at `charon.sticknife.com`.
Expected model: Expected model:
+2 -2
View File
@@ -1,11 +1,11 @@
{ {
"name": "web", "name": "ampelos-dashboard",
"version": "0.1.0", "version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "web", "name": "ampelos-dashboard",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"drizzle-orm": "^0.45.2", "drizzle-orm": "^0.45.2",