Can I bypass certain urls to ignore authentication? #212
-
Can't find documentation on this little feature, checking if it's supported before I make the switch. Currently I'm on Authelia + Nginx Proxy Manager and it's working well, but I'm looking to swap to TinyAuth + PocketID + Traefik One thing I can do in Authelia is bypass authentication for certain URLs For example: I have Glance set up with a homepage that doesn't require authentication (https://glance.mydomain.com/home), but then I have a Glance tab that has my server configuration and URLs which I have locked behind Authelias 2FA (https://glance.mydomain.com/server) Same thing for some server app APIs. I have configurations in Authelia to bypass the "*.mydomain.com/api" url so that I can access those without causing issues between app endpoint calls. I would like to make sure I can do that after switching to the TinyAuth stack. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello! Yes this is possible with tinyauth. You can use the |
Beta Was this translation helpful? Give feedback.
Hello!
Yes this is possible with tinyauth. You can use the
tinyauth.allowed
label and then a simple regex to allow the paths you want. For example to only allow the/home
path you would dotinyauth.allowed: /home
and that's it! Tinyauth will just allow the path.