I try to write my own forward auth server to do some geoblocking and general authentication.
So far I am able to forward the requests to the server but I don't recieve the real ip address. Eventhrough traefik is running it's port in host mode.
Also the whoami service, which is behind the forward auth, again recieves the real ip. Does someone have a clue how this happens/how to fix it?
thank you for sharing an example, when I am running your code it all works. Could it be an issue, if the forward auth I try to reference, is in another docker compose file or accessed via a domain? Before trying yours it was located at "auth.example.com" which of course is behind traefik.
If I try to reference to my auth server via the docker service name/container_name it seems like no request ever hits it.
I think a ForwardAuth server should not be public*. So you should use only the service name and you need to make sure it’s within a shared Docker network with the proxy.
* maybe parts of it can be public, as a nice login page might need scripts, css, images.
okay, thank you for the information. I somehow am not able to get the forward auth to actually forward auth to the server.
Maybe if you could look at the configs you can spot a mistake I made. I am fairly new and have done only really basic configuration with Traefik and Docker
from my understanding all requests should hit the auth server at /traefik and be handled from there on by the server which then responds with either any 200 code or any 400 code correct?
reality hit hard, I've noticed that my auth server is running at port 8000. So when referencing the service internally I have to write it down in the address - traefik.http.middlewares.auth.forwardauth.address=http://pyauthserver:8000/traefik http://container_name:port/url
This is the correct label to use for the forward auth when referencing a service internally