Skip to content

Commit

Permalink
Add missing configuration from the Web.config file of the AspNetHost …
Browse files Browse the repository at this point in the history
…nuget package
  • Loading branch information
Fitzchak Yitzchaki committed May 9, 2013
1 parent b1238b8 commit b7d81c0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions DefaultConfigs/NuGet.AspNetHost.Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,29 @@
<connectionStrings>
<add name="RavenDB" connectionString="Url=http://localhost:8080"/>
</connectionStrings>

<appSettings>
<add key="Raven/DataDir" value="~\Database\System"/>
<add key="Raven/AnonymousAccess" value="Admin"/>
</appSettings>

<system.web>
<hostingEnvironment idleTimeout="Infinite" shutdownTimeout="300"/>
</system.web>

<system.webServer>
<handlers>
<add name="All" path="*" verb="*" type="Raven.Web.ForwardToRavenRespondersFactory, Raven.Web"/>
</handlers>
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule" />
</modules>
</system.webServer>

<runtime>
<loadFromRemoteSources enabled="true"/>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="Analyzers;Plugins"/>
</assemblyBinding>
</runtime>
</configuration>

0 comments on commit b7d81c0

Please sign in to comment.