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?
|
feedback
|
|
Change your web.config f.e. in the following way:
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.
Edit: If this does not work try this at the top of the
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.
| |||||||||||
feedback
|
|
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.
Based on this previous question IIS7 Authorization Rules / Config - Prompting Perpetually | |||
|
feedback
|





