blob: 0fca272ab902ca6156203d264c3d44ed2617286d [file] [log] [blame]
David K. Bainbridge49b75ef2016-08-24 15:24:15 -07001<IfModule proxy_module>
2 ProxyPreserveHost on
3
4 # Map /fabric to the onos instance that is controlling the leaf
5 # spine fabric
6 <Location /fabric/>
7 ProxyPass http://onos-fabric:8181/
8 ProxyPassReverse http://onos-fabric:8181/
9 ProxyPassReverseCookiePath "/" "/fabric/"
10 Header edit Location "(^http[s]?://[^/]*)(\.*)" "$1/fabric$2"
11 </Location>
12
13 <Location /fabric/onos/ui/websock/>
14 ProxyPass "ws://onos-fabric:8181/onos/ui/websock/" disablereuse=on
15 </Location>
16
17 # Map /vtn to the onos instance that is controller the cordvtn
18 # application
19 <Location /vtn/>
Scott Bakerb4adda02016-12-05 21:06:35 -080020 ProxyPass http://onos-cord:8182/
21 ProxyPassReverse http://onos-cord:8182/
David K. Bainbridge49b75ef2016-08-24 15:24:15 -070022 ProxyPassReverseCookiePath "/" "/vtn/"
23 Header edit Location "(^http[s]?://[^/]*)(\.*)" "$1/vtn$2"
24 </Location>
25
26 <Location /vtn/onos/ui/websock/>
Scott Bakerb4adda02016-12-05 21:06:35 -080027 ProxyPass "ws://onos-cord:8182/onos/ui/websock/" disablereuse=on
David K. Bainbridge49b75ef2016-08-24 15:24:15 -070028 </Location>
29
Matteo Scandolo5c71a4b2017-01-10 12:00:50 -080030 # Cord SPA and rest-gw
31 ProxyPass /spa http://xos-spa-gui:4000
32 ProxyPass /spa/api http://xos-rest-gw:3000/api
33 ProxyPass /spa/socket.io http://xos-rest-gw:3000/socket.io
34 ProxyPass /socket.io http://xos-rest-gw:3000/socket.io
35 <Location /socket.io>
36 RewriteEngine on
37 RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
38 RewriteCond %{HTTP:CONNECTION} ^Upgrade$ [NC]
39 RewriteRule .* ws://xos-rest-gw:3000%{REQUEST_URI} [P]
40 </Location>
41
David K. Bainbridge49b75ef2016-08-24 15:24:15 -070042 # Map the various XOS roots to the XOS instance
Matteo Scandolo5c71a4b2017-01-10 12:00:50 -080043 ProxyPass /xos http://xos:9000
44 ProxyPass /xos/ http://xos:9000/
45 ProxyPassMatch /(api)$ http://xos:9000/$1/
46 ProxyPass /api/ http://xos:9000/api/
47 ProxyPass /login http://xos:9000/login
48 ProxyPass /admin/ http://xos:9000/admin/
49 ProxyPass /static/ http://xos:9000/static/
50 ProxyPass /loggedin/ http://xos:9000/loggedin/
51 ProxyPass /serviceGrid/ http://xos:9000/serviceGrid/
David K. Bainbridge49b75ef2016-08-24 15:24:15 -070052</IfModule>
53
54<IfModule rewrite_module>
55 RewriteEngine On
56 # Redirect (permanently) requests for /MAAS to /MAAS/.
57 RewriteRule ^/MAAS$ %{REQUEST_URI}/ [R=301,L]
58</IfModule>
59
60# Redirects so that basic URLs entered go the right place
61Redirect /fabric /fabric/onos/ui
62Redirect /vtn /vtn/onos/ui