markus / License / Web.config @ cf1cc862
이력 | 보기 | 이력해설 | 다운로드 (1.71 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 |
<add key="Site" value="BSENG"/> |
7 |
</appSettings> |
8 |
<system.web> |
9 |
<compilation debug="true" targetFramework="4.5" /> |
10 |
<httpRuntime targetFramework="4.5"/> |
11 |
</system.web> |
12 |
<system.serviceModel> |
13 |
<bindings> |
14 |
<customBinding> |
15 |
<binding name="scureBinding"> |
16 |
<textMessageEncoding /> |
17 |
<security> |
18 |
<localClientSettings maxClockSkew="00:10:00" /> |
19 |
<localServiceSettings maxClockSkew="00:10:00" /> |
20 |
</security> |
21 |
<httpTransport /> |
22 |
</binding> |
23 |
</customBinding> |
24 |
<wsHttpBinding> |
25 |
<binding name="BindingConfig" /> |
26 |
</wsHttpBinding> |
27 |
</bindings> |
28 |
<services> |
29 |
<service name="License.LicenseService"> |
30 |
<endpoint binding="customBinding" bindingConfiguration="scureBinding" name="binding" |
31 |
contract="license.iLicenseService" /> |
32 |
</service> |
33 |
</services> |
34 |
<behaviors> |
35 |
<serviceBehaviors> |
36 |
<behavior name=""> |
37 |
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> |
38 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
39 |
</behavior> |
40 |
</serviceBehaviors> |
41 |
</behaviors> |
42 |
<protocolMapping> |
43 |
<remove scheme="http" /> |
44 |
<add scheme="http" binding="wsHttpBinding"/> |
45 |
<add scheme="https" binding="basicHttpsBinding"/> |
46 |
</protocolMapping> |
47 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> |
48 |
</system.serviceModel> |
49 |
<system.webServer> |
50 |
<directoryBrowse enabled="true"/> |
51 |
<modules runAllManagedModulesForAllRequests="true"> |
52 |
<remove name="ServiceRedirector"/> |
53 |
</modules> |
54 |
</system.webServer> |
55 |
</configuration> |