Wizarr
Github RepoDiscord
  • Introduction
  • 💾Getting-Started
    • Installation
    • Reverse Proxy
  • 💭Using Wizarr
    • Single-Sign-On (SSO)
    • Discord Integration
    • Customise The Wizard
  • ⛑️Support
    • Discord
  • Contribute
    • Translate
    • Development
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Using Wizarr

Single-Sign-On (SSO)

Wizarr supports SSO via disabling its inbuilt authentication

To Disable Wizarr's inbuilt authentication in order to put it behind a Proxy Provider (Authelia, Authentik...), set the following variable:

DISABLE_BUILTIN_AUTH=True

Whitelist Public Paths (important!)

In order to make the invitation process available for non signed in users, make sure you whitelist the following paths:

    - domain: wizarr.domain.com
      resources:
        - '^/join(/.*)?$'
        - '^/j(/.*)?$'
        - '^/static(/.*)?$'
        - '^/setup(/.*)?$'
      policy: bypass
- '^/join/'
- '^/j/'
- '^/setup/*'
- '^/static/'
PreviousReverse ProxyNextDiscord Integration

Last updated 7 days ago

Was this helpful?

💭