How do I password protect IIS in a method analogous to Apache's AuthType / AuthUserFile mechanism?

Posted by Matt on Stack Overflow See other posts from Stack Overflow or by Matt
Published on 2008-09-29T22:05:00Z Indexed on 2010/05/28 15:22 UTC
Read the original article Hit count: 200

I'm used to doing basic password protection for Apache w/ the following method in Apache config files:

AuthType Basic
AuthName "By Invitation Only"
AuthUserFile /path/to/.htpasswd
Require valid-user

However, I've been asked to put some protection on a subdirectory of a site running ColdFusion on top of IIS6, and I'm unfamiliar with how to do this. How is this done? What should I look out for? I just need to password protect an administrative subdirectory, so I don't need a full user login system - just something that limits who can access the section of the site.

© Stack Overflow or respective owner

Related posts about security

Related posts about apache