[Pagure] Disable OIDC for staging pagure

The OIDC is not working yet on staging pagure and the work is being done in
https://pagure.io/fedora-infra/ansible/pull-request/1514

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
Michal Konecny 2023-07-28 13:55:14 +02:00
parent a7d5262a2f
commit d737ecb396

View file

@ -197,8 +197,9 @@ DISABLED_PLUGINS = ['IRC']
# `local` # `local`
# Default: ``fas``. # Default: ``fas``.
{% if env == 'pagure-staging' %} {% if env == 'pagure-staging' %}
PAGURE_AUTH = 'oidc' PAGURE_AUTH = 'openid'
OIDC_CLIENT_SECRETS = "/etc/pagure/client_secrets.json" #PAGURE_AUTH = 'oidc'
#OIDC_CLIENT_SECRETS = "/etc/pagure/client_secrets.json"
{% else %} {% else %}
PAGURE_AUTH = 'openid' PAGURE_AUTH = 'openid'
{% endif %} {% endif %}