Skip to content

Commit

Permalink
Merge pull request #1957 from Rodien/dev
Browse files Browse the repository at this point in the history
Added web.Release.config to include remove WebDAV during the publish stage of a release
  • Loading branch information
sbwalker authored Jan 28, 2022
2 parents 79b62f4 + 22acb7c commit efe6421
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Oqtane.Server/web.Release.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<location>
<system.webServer>
<modules xdt:Transform="InsertIfMissing">
<remove name="WebDAVModule" xdt:Transform="InsertIfMissing"/>
</modules>
<handlers xdt:Transform="InsertIfMissing">
<remove name="WebDAV" xdt:Transform="InsertIfMissing" />
</handlers>
</system.webServer>
</location>
</configuration>

0 comments on commit efe6421

Please sign in to comment.