Hi
Am trying out the new apache2 authentication module. I have a case where it does not really work the way I want and need suggestions how to solve it.
Am having a webserver with many sites that has basic apache2 authentication with the privacyidea apache2 client attached. Because the same redis server is running on this ubuntu 14.04 host it creates problem.
When authenticating against
subdomain1.example.com everything works as expected. redis is caching the authentication, "SETEX" "nicke" "300" "1234801509".
As probably expected, problems comes up when I now authenticate with the same username against
subdomain2.example.com, my browser is asking for username and password and I supply a new one, redis is setting this new values in cache, "SETEX" "nicke" "300" "1234453288".
So any suggestion how to solve this? Some kind of prefixing depending on website in the redis cache?