markus / FinalService / FinalServiceBase / KcomDataService / Web.config @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (1.56 KB)
1 | 42d49521 | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <configuration> |
||
3 | |||
4 | <appSettings> |
||
5 | <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> |
||
6 | </appSettings> |
||
7 | <system.web> |
||
8 | <compilation debug="true" targetFramework="4.6.1" /> |
||
9 | <httpRuntime targetFramework="4.6.1"/> |
||
10 | </system.web> |
||
11 | <system.serviceModel> |
||
12 | <behaviors> |
||
13 | <serviceBehaviors> |
||
14 | <behavior> |
||
15 | <!-- 메타데이터 정보를 공개하지 않으려면 배포하기 전에 아래 값을 false로 설정하십시오. --> |
||
16 | <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/> |
||
17 | <!-- 디버깅 목적으로 오류에서 예외 정보를 받으려면 아래의 값을 true로 설정하십시오. 예외 정보를 공개하지 않으려면 배포하기 전에 false로 설정하십시오. --> |
||
18 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
19 | </behavior> |
||
20 | </serviceBehaviors> |
||
21 | </behaviors> |
||
22 | <protocolMapping> |
||
23 | <add binding="basicHttpsBinding" scheme="https" /> |
||
24 | </protocolMapping> |
||
25 | <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> |
||
26 | </system.serviceModel> |
||
27 | <system.webServer> |
||
28 | <modules runAllManagedModulesForAllRequests="true"/> |
||
29 | <!-- |
||
30 | 디버깅 중에 웹 응용 프로그램 루트 디렉터리를 찾으려면 아래 값을 true로 설정하십시오. |
||
31 | 웹 응용 프로그램 폴더 정보를 공개하지 않으려면 배포 전에 false로 설정하십시오. |
||
32 | --> |
||
33 | <directoryBrowse enabled="true"/> |
||
34 | </system.webServer> |
||
35 | |||
36 | </configuration> |