forked from membrane/api-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxies.xml
More file actions
35 lines (26 loc) · 1.04 KB
/
proxies.xml
File metadata and controls
35 lines (26 loc) · 1.04 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
<spring:beans xmlns="http://membrane-soa.org/proxies/1/"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://membrane-soa.org/proxies/1/ http://membrane-soa.org/schemas/proxies-1.xsd">
<router>
<serviceProxy port="4443">
<ssl>
<keystore location="../../../conf/membrane.p12" password="secret" keyPassword="secret" />
<truststore location="../../../conf/membrane.p12" password="secret" />
</ssl>
<log />
<webSocket url="http://localhost:61614/" />
<target host="localhost" port="4444" />
</serviceProxy>
<serviceProxy port="4444">
<webServer docBase="." index="index.html" />
</serviceProxy>
<serviceProxy name="Console" port="9000">
<basicAuthentication>
<user name="admin" password="membrane" />
</basicAuthentication>
<adminConsole />
</serviceProxy>
</router>
</spring:beans>