-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathservices.xml.secure
More file actions
78 lines (72 loc) · 3.05 KB
/
Copy pathservices.xml.secure
File metadata and controls
78 lines (72 loc) · 3.05 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
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<services version="1.0" xmlns:deploy="vespa" xmlns:preprocess="properties">
<admin version="2.0">
<configservers>
<configserver hostalias="node0" />
<configserver hostalias="node1" />
<configserver hostalias="node2" />
</configservers>
<cluster-controllers>
<cluster-controller hostalias="node0" jvm-options="-Xms32M -Xmx64M" /> <!-- jvm-options added only to shrink memory for testing - remove before real use -->
<cluster-controller hostalias="node1" jvm-options="-Xms32M -Xmx64M" />
<cluster-controller hostalias="node2" jvm-options="-Xms32M -Xmx64M" />
</cluster-controllers>
<slobroks>
<slobrok hostalias="node0" />
<slobrok hostalias="node1" />
<slobrok hostalias="node2" />
</slobroks>
<adminserver hostalias="node3" />
</admin>
<container id="feed" version="1.0">
<document-api/>
<document-processing/>
<nodes>
<jvm options="-Xms32M -Xmx128M"/> <!-- Added only to shrink memory for testing - remove before real use -->
<node hostalias="node4" />
<node hostalias="node5" />
</nodes>
<http>
<server id="default" port="8080" />
<server id="secure" port="8443">
<ssl>
<private-key-file>/var/tls/host.key</private-key-file>
<certificate-file>/var/tls/host.pem</certificate-file>
<ca-certificates-file>/var/tls/ca-client.pem</ca-certificates-file>
<client-authentication>need</client-authentication>
</ssl>
</server>
</http>
</container>
<container id="query" version="1.0">
<search/>
<nodes>
<jvm options="-Xms32M -Xmx128M"/> <!-- Added only to shrink memory for testing - remove before real use -->
<node hostalias="node6" />
<node hostalias="node7" />
</nodes>
<http>
<server id="default" port="8080" />
<server id="ssecure" port="8443">
<ssl>
<private-key-file>/var/tls/host.key</private-key-file>
<certificate-file>/var/tls/host.pem</certificate-file>
<ca-certificates-file>/var/tls/ca-client.pem</ca-certificates-file>
<client-authentication>need</client-authentication>
</ssl>
</server>
</http>
</container>
<content id="music" version="1.0">
<min-redundancy>2</min-redundancy>
<documents>
<document type="music" mode="index" />
<document-processing cluster="feed" />
</documents>
<nodes>
<node hostalias="node8" distribution-key="0" />
<node hostalias="node9" distribution-key="1" />
</nodes>
</content>
</services>