I created a new site in IIS 7. This site is inheriting a rule to allow all users. I want to remove this rule but it won't let me. Is there a way to set the site to not inherit any rules?

link|improve this question

feedback

2 Answers

Change your web.config f.e. in the following way:

<system.web>
   <authorization>
      <allow roles="Administrator"/>
      <deny users="?"/>
   </authorization>
</system.web>

Anonymous users are identified with the questionmark.

http://msdn.microsoft.com/en-us/library/wce3kxhd.aspx

You can do the same in IIS, what actually changes your web.config in the above way.

enter image description here

Edit: If this does not work try this at the top of the web.config:

<configuration>
    <system.webServer>
        <security>
            <authorization>
                <remove users="*" roles="" verbs="" />
                <add accessType="Deny" users="?" />
                <add accessType="Allow" roles="Administrators" />
            </authorization>
        </security>
    </system.webServer>
</configuration>

http://www.iis.net/ConfigReference/system.webServer/security/authorization

Edit2: My last attempt ...

Change the permission on your application directory to not include inheritable permissions from it's parent.

enter image description here

enter image description here

enter image description here

enter image description here

link|improve this answer
That still lets me in. I'm in an enterprise environment using Active Directory for authentication. I think everybody in the company is authenticated. Is there any way to give access to only one group of users? – tou Sep 7 '11 at 21:22
@tou: edited my answer. – Tim Schmelter Sep 7 '11 at 21:56
It gives an error saying that remove is not recognized. I found out that writing <deny users="*" /> at the end of the section fixes it. It has to be at the end though. It does not work otherwise. Bug?? – tou Sep 7 '11 at 21:59
@tou: my last attempt ;) – Tim Schmelter Sep 7 '11 at 22:14
It turned out I was using the wrong section. We should use URL Authentication for this, instead of .Net Autnentication – tou Sep 9 '11 at 18:23
show 1 more comment
feedback
up vote 0 down vote accepted

The solution for this is to use URL Authorization. See here to install it. Then in IIS Authorization Rules you can remove the rule that allows all users to access the site.

enter image description here

Based on this previous question IIS7 Authorization Rules / Config - Prompting Perpetually

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.