Created
December 10, 2015 14:21
-
-
Save weeksdev/031a8a5ff14e9078b6a9 to your computer and use it in GitHub Desktop.
IIS Web Config with All Http Verbs Allowed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
For more information on how to configure your ASP.NET application, please visit | |
http://go.microsoft.com/fwlink/?LinkId=169433 | |
--> | |
<configuration> | |
<!-- | |
For a description of web.config changes for .NET 4.5 see http://go.microsoft.com/fwlink/?LinkId=235367. | |
The following attributes can be set on the <httpRuntime> tag. | |
<system.Web> | |
<httpRuntime targetFramework="4.5" /> | |
</system.Web> | |
--> | |
<system.web> | |
<compilation debug="true" targetFramework="4.5"/> | |
<httpRuntime/> | |
<webServices> | |
<protocols> | |
<add name="HttpGet"/> | |
<add name="HttpPost"/> | |
</protocols> | |
</webServices> | |
<pages controlRenderingCompatibilityVersion="4.0"/> | |
</system.web> | |
<system.webServer> | |
<handlers accessPolicy="Read, Write, Execute, Script"> | |
<remove name="StaticFile" /> | |
<remove name="SimpleHandlerFactory-ISAPI-2.0" /> | |
<remove name="WebDAV" /> | |
<remove name="SimpleHandlerFactory-Integrated-4.0" /> | |
<remove name="SimpleHandlerFactory-Integrated" /> | |
<add name="SimpleHandlerFactory-Integrated" path="*.ashx" verb="GET,HEAD,POST,DEBUG,PUT,DELETE,OPTIONS" type="System.Web.UI.SimpleHandlerFactory" resourceType="Unspecified" requireAccess="Write" preCondition="integratedMode" /> | |
<add name="SimpleHandlerFactory-Integrated-4.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG,PUT,DELETE,OPTIONS" type="System.Web.UI.SimpleHandlerFactory" resourceType="Unspecified" requireAccess="Write" preCondition="integratedMode,runtimeVersionv4.0" /> | |
<add name="SimpleHandlerFactory-ISAPI-2.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG,PUT,DELETE,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> | |
<add name="StaticFile" path="*" verb="GET,HEAD,POST,DEBUG,PUT,DELETE,OPTIONS" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" /> | |
</handlers> | |
<security> | |
<authorization> | |
<remove users="*" roles="" verbs="" /> | |
<add accessType="Allow" users="*" verbs="GET,HEAD,POST,PUT,DELETE,DEBUG,OPTIONS" /> | |
</authorization> | |
</security> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment