Skip to main content

Alliance Auth OIDC Provider

Project description

allianceauth_oidc

allianceauth_oidc

WIP, MVP, Alpha Level Testing ONLY

Setup/Install:

add to INSTALLED_APPS

    'allianceauth_oidc',
    'oauth2_provider',

Settings Required

OAUTH2_PROVIDER_APPLICATION_MODEL='allianceauth_oidc.AllianceAuthApplication'
OAUTH2_PROVIDER = {
    "OIDC_ENABLED": True,
    # https://django-oauth-toolkit.readthedocs.io/en/stable/oidc.html#creating-rsa-private-key
    "OIDC_RSA_PRIVATE_KEY": os.environ.get('OIDC_RSA_PRIVATE_KEY'), ## Load your private key into an env variable
    "OAUTH2_VALIDATOR_CLASS": "allianceauth_oidc.auth_provider.AllianceAuthOAuth2Validator",
    "SCOPES": {
        "openid": "User Profile",
        "email": "User email",
        "profile": "Affiliations and Groups"
        },
    "PKCE_REQUIRED": False,
    "APPLICATION_ADMIN_CLASS": "allianceauth_oidc.admin.ApplicationAdmin",
    'ACCESS_TOKEN_EXPIRE_SECONDS': 60,
    'REFRESH_TOKEN_EXPIRE_SECONDS': 24*60*60,
    'ROTATE_REFRESH_TOKEN': True,
}

URLs file edits

add

    path('o/', include('allianceauth_oidc.urls', namespace='oauth2_provider')),

run migrations restart auth

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

allianceauth_oidc_provider-0.0.1a3.tar.gz (13.6 kB view hashes)

Uploaded Source

Built Distribution

allianceauth_oidc_provider-0.0.1a3-py2.py3-none-any.whl (13.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page