-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_http.xml
45 lines (34 loc) · 1.08 KB
/
server_http.xml
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
<jerry>
<!--certificate domain="*" key="server.key" cert="server.pub"/-->
<http-context id="x">
</http-context>
<http-client id="http-client-1">
<parameter key="url" value="https://www.heise.de"/>
</http-client>
<database id="my-db" implementation="esl/database/SQLiteConnectionFactory">
<parameter key="URI" value="file:my.db?mode=rw"/>
</database>
<http-context id="ref-context">
<context>
<response-header key="WWW-Authenticate" value="Basic realm="AuthArea""/>
<!--response-header key="WWW-Authenticate" value="Bearer realm="AuthArea""/-->
<!-- ------------- -->
<!-- Authorization -->
<!-- ------------- -->
</context>
<endpoint path="test1/log">
<endpoint path="mc-lukas">
</endpoint>
<reference id="y" ref-id="x"/>
<context ref-id="y"/>
</endpoint>
<endpoint path="heise">
</endpoint>
</http-context>
<http-server>
<parameter key="https" value="false"/>
<parameter key="threads" value="4"/>
<parameter key="port" value="8080"/>
<context ref-id="ref-context"/>
</http-server>
</jerry>