mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-11 10:32:27 +08:00
Signed-off-by: David Kirwan <dkirwan@redhat.com> Signed-off-by: Aurelien Bompard <abompard@redhat.com>
19 lines
514 B
Python
19 lines
514 B
Python
#
|
|
# This is the config file for Test Auth as intended to be used in OpenShift
|
|
#
|
|
|
|
|
|
# Deployed to a subpath
|
|
# APPLICATION_ROOT = '/test-auth/'
|
|
|
|
# Cookies
|
|
SECRET_KEY = "{{ flask_oidc_dev_session_secret }}"
|
|
SESSION_COOKIE_NAME = 'flask-oidc-dev'
|
|
SESSION_COOKIE_HTTPONLY = True
|
|
SESSION_COOKIE_SECURE = True
|
|
|
|
# Auth
|
|
OIDC_CLIENT_SECRETS = "/etc/flask-oidc-dev/oidc.json"
|
|
OPENID_ENDPOINT = "https://id{{ env_suffix }}.fedoraproject.org/openid/"
|
|
FAS_OPENID_ENDPOINT = "https://id{{ env_suffix }}.fedoraproject.org/openid/"
|