Replies: 2 comments 1 reply
-
I've been trying to get this to work for forever as well. To my understanding it's on Filebrowser's end. I cannot for the life of me get Filebrowser to switch from JSON authentication to Proxy. Even though they do allow it. My dynamic config for traefik looks more like this: http: routers: services: Authnetik does catch it before hand and have me login but it just sends me to Filebrowser's login page. Either I need to figure out how to properly change Filebrowser's authentication (which seems extremely obtuse and not well documented) or figure out some way for Authentik to send JWT Tokens. |
Beta Was this translation helpful? Give feedback.
-
So here's my setup for filebrowser : ` filebrowser:
####### services:
middlewares: ` I hope this help you ... 👍 |
Beta Was this translation helpful? Give feedback.
-
Hi everyone
Im kinda new to authentik and im trying to setup my apps to guide through authentik.
My installation is in docker and all my container is label correct so that part is working :)
But i have some entries in traefiks config.yml like this, so none docker installation:
`
routers:
filebrowser:
entryPoints:
- "websecure"
rule: "Host(filebrowser.MYDOMAIN.COM)"
middlewares:
- https-redirect
services:
filebrowser:
loadBalancer:
servers:
- url: "http://192.168.1.100:3670"
passHostHeader: true
middlewares:
https-redirect:
redirectScheme:
scheme: https
auth:
forwardauth:
address: http://authentikserver:9000/outpost.goauthentik.io/auth/traefik
trustForwardHeader: true
authResponseHeaders:
- X-authentik-username
- X-authentik-groups
- X-authentik-email
- X-authentik-name
- X-authentik-uid
- X-authentik-jwt
- X-authentik-meta-jwks
- X-authentik-meta-outpost
- X-authentik-meta-provider
- X-authentik-meta-app
- X-authentik-meta-version
`
And it seems no matter what i do, i cannot let this filebrowser.MYDOMAIN.COM to get through authentik
Any ideas or guides to accomplish this?
Any input is appreciated :)
Beta Was this translation helpful? Give feedback.
All reactions