markus / License / Web.config @ 1305c420
이력 | 보기 | 이력해설 | 다운로드 (1.63 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<configuration> |
3 |
<appSettings> |
4 |
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> |
5 |
<add key="UploadUri" value="https://markuslicense.azurewebsites.net/Upload" /> |
6 |
</appSettings> |
7 |
<system.web> |
8 |
<compilation debug="true" targetFramework="4.5" /> |
9 |
<httpRuntime targetFramework="4.5"/> |
10 |
</system.web> |
11 |
<system.serviceModel> |
12 |
<bindings> |
13 |
<customBinding> |
14 |
<binding name="scureBinding"> |
15 |
<textMessageEncoding /> |
16 |
<security> |
17 |
<localClientSettings maxClockSkew="00:10:00" /> |
18 |
<localServiceSettings maxClockSkew="00:10:00" /> |
19 |
</security> |
20 |
<httpTransport /> |
21 |
</binding> |
22 |
</customBinding> |
23 |
<wsHttpBinding> |
24 |
<binding name="BindingConfig" /> |
25 |
</wsHttpBinding> |
26 |
</bindings> |
27 |
<services> |
28 |
<service name="License.LicenseService"> |
29 |
<endpoint binding="customBinding" bindingConfiguration="scureBinding" name="binding" |
30 |
contract="license.iLicenseService" /> |
31 |
</service> |
32 |
</services> |
33 |
<behaviors> |
34 |
<serviceBehaviors> |
35 |
<behavior name=""> |
36 |
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> |
37 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
38 |
</behavior> |
39 |
</serviceBehaviors> |
40 |
</behaviors> |
41 |
<protocolMapping> |
42 |
<remove scheme="http" /> |
43 |
<add scheme="http" binding="wsHttpBinding"/> |
44 |
<add scheme="https" binding="basicHttpsBinding"/> |
45 |
</protocolMapping> |
46 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> |
47 |
</system.serviceModel> |
48 |
<system.webServer> |
49 |
<modules runAllManagedModulesForAllRequests="true"/> |
50 |
<directoryBrowse enabled="true"/> |
51 |
</system.webServer> |
52 |
</configuration> |