Default LOGTO_SKIP_SSL_VERIFY to true; update comment and docs

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/8a17f133-904d-45c7-bc35-b3f5c1d2c97e

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-30 16:46:25 +00:00
parent 9e579972ca
commit 92d6a06a33
3 changed files with 70 additions and 0 deletions
+5
View File
@@ -71,10 +71,15 @@ class Settings(BaseSettings):
# LOGTO_APP_SECRET: the Client Secret of the same application.
# LOGTO_REDIRECT_URI (optional): override the default callback URL.
# Defaults to <base_url>/api/v1/auth/callback.
# LOGTO_SKIP_SSL_VERIFY (optional): set to false to enable SSL certificate
# verification when connecting to the Logto OIDC endpoint.
# Defaults to true (verification disabled) to support
# self-signed certificates out of the box.
LOGTO_ENDPOINT: Optional[str] = None
LOGTO_APP_ID: Optional[str] = None
LOGTO_APP_SECRET: Optional[str] = None
LOGTO_REDIRECT_URI: Optional[str] = None
LOGTO_SKIP_SSL_VERIFY: bool = True
@property
def logto_configured(self) -> bool: