Refactor OAuth URLs in config.template.yml to use relative paths for improved portability

This commit is contained in:
2025-07-29 12:00:39 -08:00
parent 511c438455
commit 9e0f742129

View File

@@ -16,9 +16,9 @@ auth:
provider: gitea provider: gitea
client_id: "__OAUTH_CLIENT_ID__" client_id: "__OAUTH_CLIENT_ID__"
client_secret: "__OAUTH_CLIENT_SECRET__" client_secret: "__OAUTH_CLIENT_SECRET__"
auth_url: https://git.beardedtek.com/login/oauth/authorize auth_url: login/oauth/authorize
token_url: https://git.beardedtek.com/login/oauth/access_token token_url: login/oauth/access_token
user_url: https://git.beardedtek.com/api/v1/user user_url: api/v1/user
enable_pkce: true enable_pkce: true
scope: "user" scope: "user"