Created
September 20, 2012 20:48
-
-
Save dotnetchris/3758271 to your computer and use it in GitHub Desktop.
RavenDB server web.config usage for gist https://gist.github.com/3758246
This file contains 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
<configuration> | |
<appSettings> | |
<add key="Raven/AnonymousAccess" value="All" /> | |
<add key="Raven/RunInMemory" value="true" /> | |
<add key="Raven/VirtualDirectory" value="/ravendb.testserver" /> | |
<add key="Raven/TempIndexPromotionMinimumQueryCount" value="1" /> | |
</appSettings> | |
<system.web> | |
<customErrors mode="Off"> | |
</customErrors> | |
<compilation debug="true" targetFramework="4.0" /> | |
</system.web> | |
<system.webServer> | |
<validation validateIntegratedModeConfiguration="false" /> | |
<modules runAllManagedModulesForAllRequests="true"> | |
<remove name="WebDAVModule" /> | |
</modules> | |
<handlers> | |
<remove name="WebDAV" /> | |
<add name="All" path="*" verb="*" type="Raven.Web.ForwardToRavenRespondersFactory, Raven.Web" /> | |
</handlers> | |
</system.webServer> | |
<runtime> | |
<loadFromRemoteSources enabled="true" /> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<probing privatePath="Analyzers" /> | |
</assemblyBinding> | |
</runtime> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment