I'm setting up a basic test environment to test drive multiple sites I co-maintain with a colleague.
What I am trying to achieve is to password protect the entire domain with basic auth. This is working, but the problem is that for every subomain you need to reauth yourself. Which, to say the least, is pretty annoying since there are at least 30 subdomains in use at the moment.
Is it possible to transfer the basic auth session across multiple subdomains?
I know I can try to rewrite it all to use a different kind of auth but basic auth is a lot easier to set up.
I am using apache and these are the rules I am using for basic auth:
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /svn/authz
Require valid-user