-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathService.csdefcfg
More file actions
69 lines (69 loc) · 2.22 KB
/
Service.csdefcfg
File metadata and controls
69 lines (69 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Service name="FunnelFire">
<LocalResources>
<LocalStorage name="Logs" cleanOnRoleRecycle="false" sizeInMB="1024" />
</LocalResources>
<WebRole name="Web" vmsize="Small">
<Instances count="1" />
<Sites>
<Site name="Web">
<Bindings>
<Binding name="HttpIn" endpointName="Dummy" />
</Bindings>
</Site>
</Sites>
<ConfigurationSettings>
<Setting name="TentacleRole" value="Web" />
</ConfigurationSettings>
<Certificates>
<Certificate name="SslCertificate" thumbprint="1B87C27D744F6BF9631CEFBF862C3C9091EA6ABA" thumbprintAlgorithm="sha1" />
</Certificates>
<Endpoints>
<InputEndpoint name="Dummy" protocol="http" port="12345" />
<InputEndpoint name="Web" protocol="http" port="80" />
<InputEndpoint name="Ssl" protocol="https" port="443" certificate="SslCertificate" />
</Endpoints>
</WebRole>
<WorkerRole name="BatchWorker" vmsize="Small">
<Instances count="1" />
<ConfigurationSettings>
<Setting name="TentacleRole" value="BatchWorker" />
</ConfigurationSettings>
</WorkerRole>
<WorkerRole name="Feed" vmsize="Medium">
<Instances count="1" />
<ConfigurationSettings>
<Setting name="TentacleRole" value="Feed" />
</ConfigurationSettings>
</WorkerRole>
<WorkerRole name="SalesForce" vmsize="Small">
<Instances count="1" />
<ConfigurationSettings>
<Setting name="TentacleRole" value="Salesforce" />
</ConfigurationSettings>
</WorkerRole>
<NetworkConfiguration>
<VirtualNetworkSite name="ffazva" />
<AddressAssignments>
<InstanceAddress roleName="Web">
<Subnets>
<Subnet name="ws" />
</Subnets>
</InstanceAddress>
<InstanceAddress roleName="BatchWorker">
<Subnets>
<Subnet name="bg" />
</Subnets>
</InstanceAddress>
<InstanceAddress roleName="Feed">
<Subnets>
<Subnet name="bg" />
</Subnets>
</InstanceAddress>
<InstanceAddress roleName="SalesForce">
<Subnets>
<Subnet name="bg" />
</Subnets>
</InstanceAddress>
</AddressAssignments>
</NetworkConfiguration>
</Service>