Community Patterns

Community Library Entry

1

Regular Expression
Created·2023-05-06 19:29
Updated·2023-05-07 13:35
Flavor·Golang

`
[\w]{16}.[\w]{44}$
`
gm
Open regex in editor

Description

Testing Authelia subdomain / path rules. You can read more at the Authelia Docs

By default, this regex101 page is shown a test for a generic API path

    - domain: "some-sub.drpranavmishra.com"
      resources:
        - "^/api([/?].*)?$" # API paths
        - "^/healthz.*$" # Health check
	    - "^/\?[\S]{40,70}$" # PrivateBin
      policy: bypass
Submitted by Pranav Mishra