markus / MarkusLogview / MARKUS_LOGVIEW / Web.config @ 91b2b398
이력 | 보기 | 이력해설 | 다운로드 (6.59 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<!-- |
3 |
ASP.NET 응용 프로그램을 구성하는 방법에 대한 자세한 내용은 다음을 참조하세요. |
4 |
https://go.microsoft.com/fwlink/?LinkId=301879 |
5 |
--> |
6 |
<configuration> |
7 |
<configSections> |
8 |
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
9 |
<section name="MARKUS_LOGVIEW.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
10 |
</sectionGroup> |
11 |
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> |
12 |
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
13 |
</configSections> |
14 |
<appSettings> |
15 |
<add key="webpages:Version" value="3.0.0.0" /> |
16 |
<add key="webpages:Enabled" value="false" /> |
17 |
<add key="ClientValidationEnabled" value="true" /> |
18 |
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> |
19 |
</appSettings> |
20 |
<system.web> |
21 |
<compilation debug="true" targetFramework="4.6.1" /> |
22 |
<httpRuntime executionTimeout="110" maxRequestLength="1048576" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" targetFramework="4.6.1" /> |
23 |
<httpModules> |
24 |
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" /> |
25 |
</httpModules> |
26 |
<!-- 에러 발생 시 이동 경로 --> |
27 |
<customErrors mode="Off" /> |
28 |
</system.web> |
29 |
<system.webServer> |
30 |
<security> |
31 |
<requestFiltering> |
32 |
<requestLimits maxAllowedContentLength="1073741824" /> |
33 |
</requestFiltering> |
34 |
</security> |
35 |
<handlers> |
36 |
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> |
37 |
<remove name="OPTIONSVerbHandler" /> |
38 |
<remove name="TRACEVerbHandler" /> |
39 |
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> |
40 |
</handlers> |
41 |
<validation validateIntegratedModeConfiguration="false" /> |
42 |
<modules> |
43 |
<remove name="ApplicationInsightsWebTracking" /> |
44 |
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" /> |
45 |
</modules> |
46 |
<directoryBrowse enabled="true"/> |
47 |
</system.webServer> |
48 |
<runtime> |
49 |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
50 |
<dependentAssembly> |
51 |
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> |
52 |
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" /> |
53 |
</dependentAssembly> |
54 |
<dependentAssembly> |
55 |
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> |
56 |
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> |
57 |
</dependentAssembly> |
58 |
<dependentAssembly> |
59 |
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
60 |
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> |
61 |
</dependentAssembly> |
62 |
<dependentAssembly> |
63 |
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> |
64 |
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
65 |
</dependentAssembly> |
66 |
<dependentAssembly> |
67 |
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> |
68 |
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
69 |
</dependentAssembly> |
70 |
<dependentAssembly> |
71 |
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> |
72 |
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> |
73 |
</dependentAssembly> |
74 |
<dependentAssembly> |
75 |
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
76 |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" /> |
77 |
</dependentAssembly> |
78 |
<dependentAssembly> |
79 |
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
80 |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" /> |
81 |
</dependentAssembly> |
82 |
</assemblyBinding> |
83 |
</runtime> |
84 |
<system.codedom> |
85 |
<compilers> |
86 |
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" /> |
87 |
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" /> |
88 |
</compilers> |
89 |
</system.codedom> |
90 |
<system.serviceModel> |
91 |
<bindings /> |
92 |
<client /> |
93 |
</system.serviceModel> |
94 |
<applicationSettings> |
95 |
<MARKUS_LOGVIEW.Properties.Settings> |
96 |
<setting name="MARKUS_LOGVIEW_ConvertWebService_Conversion" serializeAs="String"> |
97 |
<value>http://cloud.devdoftech.co.kr:5977/Conversion.asmx</value> |
98 |
</setting> |
99 |
<setting name="MARKUS_LOGVIEW_DeleteWebService_FileDelete" serializeAs="String"> |
100 |
<value>http://cloud.devdoftech.co.kr:5977/FileDelete/FileDelete.asmx</value> |
101 |
</setting> |
102 |
</MARKUS_LOGVIEW.Properties.Settings> |
103 |
</applicationSettings> |
104 |
<connectionStrings> |
105 |
<add name="LicenseEntities" connectionString="metadata=res://*/LicenseModel.LicenseModel.csdl|res://*/LicenseModel.LicenseModel.ssdl|res://*/LicenseModel.LicenseModel.msl;provider=System.Data.SqlClient;provider connection string="data source=(LocalDB)\MSSQLLocalDB;attachdbfilename=|DataDirectory|\License.mdf;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" /> |
106 |
</connectionStrings> |
107 |
<entityFramework> |
108 |
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> |
109 |
<parameters> |
110 |
<parameter value="v13.0" /> |
111 |
</parameters> |
112 |
</defaultConnectionFactory> |
113 |
</entityFramework> |
114 |
</configuration> |