I have a site that uses apache reverse proxy to combine an old IIS system with some new rails functionality (same database). This works fine.
For staging I have created a beta site same as above except that I use ip address and digest-authorization to only allow developers access. This works fine for ip addresses.
However, when I use digest-authorization my reverse proxied /stylesheets folder (which points to an Amazon S3 bucket) is blocked with an error like the following:
InvalidArgumentUnsupported Authorization TypeDigest username="danv", realm="BETA-ACCESS", nonce="ZiudHuLlBAA=d9fa13adaa4f0bd37e3faa7b30ed6bd60a5570b2", uri="/stylesheets/default/screen.css", algorithm=MD5, response="7e1bc11912474647756537bb0bd3e488", qop=auth, nc=00000007, cnonce="ed4a08fc70364cb9"Authorization0E3F4E27386E0A00BTZfZ5Uv4PwuMzOCoIYhorPEuPOdNusLZjTDowqlZXImxZ0bLjt22B9Y5v7wc8+4
I have searched the web but cannot find anything about this behavior.
Here are the relevant parts of the virtual host file:
# IP and DIGEST ACCESS
<Proxy *>
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Include "D:\wamp\admin-allow.inc"
AuthType Digest
# realm associated with digest passwd
AuthName "BETA-ACCESS"
AuthDigestDomain /
AuthUserFile "D:/wamp/digest"
Require valid-user
Satisfy Any
</Proxy>
# Reverse proxy pointing to CNAME that points to:
# http://lib.decdynamics.com.s3.amazonaws.com/stylesheets
ProxyPass /stylesheets http://lib.decdynamics.com/stylesheets
ProxyPassReverse /stylesheets http://lib.decdynamics.com/stylesheets
Here is an URL showing direct access to a stylesheet:
http://lib.decdynamics.com/stylesheets/default/screen.css
Here the same stylesheet accessed via digest-authorization (of course login required):
http://beta.decdynamics.com/stylesheets/default/screen.css
What I am doing wrong?
Is it possible to exclude the /stylesheets folder from authorization?
Thanks drco for the inspiration.
I decided to create a working example based on my real website (domain names and ip addresses are not real).
Note I had to use Location elements to isolate the /stylesheets, /images and /javascript folders. In future I will use a single /assets folder to DRY this up a bit.
I have a WAMP based apache server acting as reverse proxy to blend Windows IIS server subfolders with a linux based RAILS server with RAILS assets coming from Amazon S3. Now when I do development with this site it is protected using Digest Authorization. Which also allows me the ability to let a small number of clients directly access the beta.
.