The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
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.
100 lines
4.4 KiB
100 lines
4.4 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=301880 |
|
--> |
|
<configuration> |
|
<configSections> |
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
|
|
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections> |
|
<connectionStrings configSource="ConnectionStrings.config" /> |
|
<!-- Create ConnectionStrings.config and add your connection string--> |
|
<appSettings> |
|
<add key="webpages:Version" value="3.0.0.0" /> |
|
<add key="webpages:Enabled" value="false" /> |
|
<add key="ClientValidationEnabled" value="true" /> |
|
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> |
|
<add key="RouteDebugger:Enabled" value="false" /> |
|
</appSettings> |
|
<!-- |
|
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367. |
|
|
|
The following attributes can be set on the <httpRuntime> tag. |
|
<system.Web> |
|
<httpRuntime targetFramework="4.5.2" /> |
|
</system.Web> |
|
--> |
|
<system.web> |
|
<customErrors mode="Off" /> |
|
<authentication mode="Forms"> |
|
<forms loginUrl="~/Profile/Login" timeout="2880" /> |
|
</authentication> |
|
<compilation debug="true" targetFramework="4.5.2" /> |
|
<httpRuntime targetFramework="4.5.2" /> |
|
</system.web> |
|
<system.webServer> |
|
<modules> |
|
<remove name="FormsAuthentication" /> |
|
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" /> |
|
</modules> |
|
<!--<rewrite> |
|
<rules> |
|
<rule name="sub domain map" patternSyntax="ECMAScript" stopProcessing="false"> |
|
<match url="(.*)" /> |
|
<action type="Rewrite" url="{C:1}/{R:1}" appendQueryString="true" /> |
|
<conditions trackAllCaptures="true"> |
|
<add input="{HTTP_HOST}" pattern="([a-zA-Z0-9]+)?.?teknik.io" /> |
|
</conditions> |
|
</rule> |
|
</rules> |
|
</rewrite>--> |
|
<staticContent> |
|
<mimeMap fileExtension="woff" mimeType="application/font-woff" /> |
|
<mimeMap fileExtension="woff2" mimeType="application/font-woff" /> |
|
</staticContent> |
|
</system.webServer> |
|
<runtime> |
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> |
|
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> |
|
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
|
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> |
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> |
|
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> |
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" /> |
|
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> |
|
</dependentAssembly> |
|
</assemblyBinding> |
|
</runtime> |
|
<entityFramework> |
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> |
|
<parameters> |
|
<parameter value="mssqllocaldb" /> |
|
</parameters> |
|
</defaultConnectionFactory> |
|
<providers> |
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> |
|
</providers> |
|
</entityFramework> |
|
</configuration> |