Skip to content

Commit

Permalink
✨(backend) add ODC_VERIFY_SSL configuration
Browse files Browse the repository at this point in the history
Need to disable SSL while authenticating to unsecure
OIDC provider in dev environment.
  • Loading branch information
lebaudantoine authored and rouja committed Dec 6, 2024
1 parent 2dd16d1 commit 8b2365d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/backend/meet/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,9 @@ class Base(Configuration):
OIDC_CREATE_USER = values.BooleanValue(
default=True, environ_name="OIDC_CREATE_USER", environ_prefix=None
)
OIDC_VERIFY_SSL = values.BooleanValue(
default=True, environ_name="OIDC_VERIFY_SSL", environ_prefix=None
)
OIDC_FALLBACK_TO_EMAIL_FOR_IDENTIFICATION = values.BooleanValue(
default=False,
environ_name="OIDC_FALLBACK_TO_EMAIL_FOR_IDENTIFICATION",
Expand Down

0 comments on commit 8b2365d

Please sign in to comment.