Single user id to access web site??

Single user id to access web site??

am 28.02.2006 20:33:30 von todd.prickett

Hi,
I have a site that I want to use basic auth over SSL. I want a single
login (I'm going to be the only user). The machine currently has a few

user account already that I don't want to remove. How do I limit IIS
to ONLY allow a single login to access the web (i.o.w. only this user
ID will be accepted by the basic auth password prompt).

This is on IIS 5 and WinXP Pro using workgroups.

TIA

Re: Single user id to access web site??

am 01.03.2006 06:51:22 von Ken Schaefer

Change the NTFS permissions on the files in question.

Remember that authentication and authorization are two distinct operations.
Any user can /authenticate/ by supplying valid username/password
combination. But that doesn't mean that the user is authorized to read the
files. By changing the NTFS permissions on the files, you can choose who is
authorized to read those files.

Cheers
Ken


wrote in message
news:1141155210.207437.224210@v46g2000cwv.googlegroups.com.. .
: Hi,
: I have a site that I want to use basic auth over SSL. I want a single
: login (I'm going to be the only user). The machine currently has a few
:
: user account already that I don't want to remove. How do I limit IIS
: to ONLY allow a single login to access the web (i.o.w. only this user
: ID will be accepted by the basic auth password prompt).
:
: This is on IIS 5 and WinXP Pro using workgroups.
:
: TIA
:

Re: Single user id to access web site??

am 01.03.2006 14:35:27 von todd.prickett

Ken Schaefer wrote:
> Change the NTFS permissions on the files in question.


Thanks Ken. I have a look there.