Advertisement
artisticcheese

Untitled

Feb 9th, 2012
1,215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.54 KB | None | 0 0
  1. <rewrite>
  2.     <rules>
  3.         <rule name="Append Basic Authentication" patternSyntax="Wildcard" stopProcessing="true">
  4.                     <match url="*" />
  5.                     <conditions>
  6.                         <add input="{REQUEST_METHOD}" pattern="PUT" />
  7.                     </conditions>
  8.                     <serverVariables>
  9.                         <set name="HTTP_Authorization" value="Basic Z3JlZ29yeTpncmVnb3J5" replace="false" />
  10.                     </serverVariables>
  11.                     <action type="None" />
  12.         </rule>
  13.     </rules>
  14. </rewrite>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement