Advertisement
Guest User

web.config

a guest
Oct 19th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.   <system.webServer>
  4.     <handlers>
  5.       <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
  6.     </handlers>
  7.     <aspNetCore processPath=".\viper.exe" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout">
  8.             <environmentVariables>
  9.                 <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Staging" />
  10.             </environmentVariables>
  11.         </aspNetCore>
  12.   </system.webServer>
  13.     <system.web>
  14.         <sessionState timeout="1440" />
  15.     </system.web>
  16. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement