Reputation: 13756
I have a site i am working on that i would like to display only to a few others for now. Is there anything wrong with setting up windows user names and using windows auth to prompt the user before getting into the development site?
Upvotes: 7
Views: 3408
Reputation: 37378
Why don't you just set up an NTFS user and assign it to the website (and remove anonymous access)
Upvotes: -1
Reputation: 1630
If you aren't married to IIS, and you need developers to be able to change the content, I would consider Apache + SSL + WebDav (aka Web Folders). This will allow you to offer a secure sandbox where developers can change and view the content without having user accounts on the server.
This setup requires some knowledge of Apache so it only makes sense if you are already using Apache or if you frequently need to provide outsiders access to your web server.
First useful link I found on the topic: http://pascal.thivent.name/2007/08/howto-setup-apache-224-webdav-under.html
Upvotes: 1
Reputation: 75991
Of course, there's nothing wrong with Windows auth. There are couple of (not too big) drawbacks, though:
I would suggest two alternatives:
Upvotes: 1
Reputation: 25271
There are several ways, with varying degrees of security:
Upvotes: 7
Reputation: 56113
That depends on what you mean by "best": for example, do you mean "easiest" or "most secure"?
The best way might be to have it on a private network, which you attach to via VPN.
Upvotes: 2
Reputation: 1032
I do this frequently. I use Hamachi to allow them to access my dev box so they can see whats going on. they have access to it when they want , and/or when I allow. When they are done I evict them from my Hamachi network and change the password.
Hamachi is a software VPN. Heres a link to Hamachi - AKA LogMeIn
They have a free version which works quite well.
Upvotes: 1