mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.2 KiB
53 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
<configuration>
|
|
<configSections>
|
|
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
|
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
|
</sectionGroup>
|
|
</configSections>
|
|
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.5.2">
|
|
|
|
<buildProviders>
|
|
<add extension=".cshtml"
|
|
type="Nancy.ViewEngines.Razor.BuildProviders.NancyCSharpRazorBuildProvider, Nancy.ViewEngines.Razor.BuildProviders" />
|
|
<add extension=".vbhtml"
|
|
type="Nancy.ViewEngines.Razor.BuildProviders.NancyVisualBasicRazorBuildProvider, Nancy.ViewEngines.Razor.BuildProviders" />
|
|
</buildProviders>
|
|
</compilation>
|
|
|
|
<httpHandlers>
|
|
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" />
|
|
</httpHandlers>
|
|
</system.web>
|
|
<connectionStrings>
|
|
<add name="Sqlite" connectionString="Data Source=RequestPlex.sqlite" providerName="Mono.Data.Sqlite"/>
|
|
</connectionStrings>
|
|
<appSettings>
|
|
<add key="webPages:Enabled" value="false" />
|
|
</appSettings>
|
|
<system.web.webPages.razor>
|
|
<pages pageBaseType="Nancy.ViewEngines.Razor.NancyRazorViewBase">
|
|
<namespaces>
|
|
<add namespace="Nancy.ViewEngines.Razor" />
|
|
</namespaces>
|
|
</pages>
|
|
</system.web.webPages.razor>
|
|
<system.webServer>
|
|
<validation validateIntegratedModeConfiguration="false" />
|
|
<httpErrors existingResponse="PassThrough"/>
|
|
<handlers>
|
|
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" />
|
|
</handlers>
|
|
<staticContent>
|
|
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="00:00:15" />
|
|
</staticContent>
|
|
</system.webServer>
|
|
</configuration>
|