Hi,
I already posted this in the wrong forum (IIS 5 and 6), so I'm sorry for the cross-post.
I have an ASP.NET MVC Website which is currently under development, deployed on a W2008r2 IIS7.5 x64 server, integrated pipeline.
My website uses "forms" authentication and it works perfectly.
As
the website is under development and not yet open to the public, I would
like to add an additional layer of protection, so that non-authorized
users can't even see the login form, and only people who know a given password can actually view the website (and then authenticate through forms auth).
In apache I would do it obviously with htpasswd+htaccess. In IIS7.5 I've tried to install Troxo IISPassword, but it doesn't work with IIS7.5
Is there any way to add
something like an htpasswd to my website without messing with the
currently-configured forms-based auth stuff? I would like not having to touch system users nor forms-based auth...
My only option right now is putting an apache proxy behind the IIS, but that's ugly... Any other option?