Skip to content

Instantly share code, notes, and snippets.

@kdarty
Created April 8, 2015 16:53
Show Gist options
  • Save kdarty/e96050885ed1e081425d to your computer and use it in GitHub Desktop.
Save kdarty/e96050885ed1e081425d to your computer and use it in GitHub Desktop.
Prevent web.config Inheritance from Root Web Applications (for Virtual Path Applications)
<?xml version="1.0"?>
<configuration>
<!-- Disable Inheritance -->
<location path="." inheritInChildApplications="false">
<system.web>
<compilation debug="false" />
<!-- other configuration attributes -->
</system.web>
</location>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment