-
Web.config Question
Is there a way to allow all users from a particular domain to access a site? Right now I am having to place the domain and the user name for everyone that comes to the site. It is a site that is internal to the company. for example
<allow users="domain\user1,domain\user2,domain\user3" />
I tried using a wildcard like
<allow users="domain\*" />
but it does not allow that. Is there a different way?
Thanks!
-
Re: Web.config Question
Nope. However, perhaps an alternative is to try using domain groups. Give this a shot:
Code:
<allow users="Domain\Domain Users" />
Just replace the domain - "Domain Users" (assuming I remember correctly) is a group that contains all users on the specified domain.
-
Re: Web.config Question
I just tried that idea and it does not work for me...any other suggestions?
-
Re: Web.config Question
Try
Code:
<allow roles="domainname\Everyone" />
OR, if that doesn't work
Code:
<allow roles="domainname\Managers, domainname\EmployeeA, domainname\etc">