Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization/ServiceDefinition.csdef @ 8251

Last change on this file since 8251 was 8235, checked in by spimming, 12 years ago

#1888: hive server web role initial commit

File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<ServiceDefinition name="HeuristicLab.Services.Optimization" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-05.1.7">
3  <WebRole name="HeuristicLab.Services.Hive.WebRole" vmsize="Small">
4    <Sites>
5      <Site name="Web">
6        <Bindings>
7          <Binding name="HttpIn" endpointName="HttpIn" />
8        </Bindings>
9      </Site>
10    </Sites>
11    <Endpoints>
12      <InputEndpoint name="HttpIn" protocol="http" port="80" localPort="80" />
13    </Endpoints>
14    <Imports>
15      <Import moduleName="Diagnostics" />
16      <Import moduleName="RemoteAccess" />
17      <Import moduleName="RemoteForwarder" />
18    </Imports>
19    <LocalResources>
20      <LocalStorage name="HeuristicLab.Services.Hive.WebRole.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />
21    </LocalResources>
22    <Certificates>
23      <Certificate name="localhost" storeLocation="LocalMachine" storeName="My" />
24    </Certificates>
25  </WebRole>
26</ServiceDefinition>
Note: See TracBrowser for help on using the repository browser.