David K. Bainbridge | 49b75ef | 2016-08-24 15:24:15 -0700 | [diff] [blame] | 1 | <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 Baker | b4adda0 | 2016-12-05 21:06:35 -0800 | [diff] [blame] | 20 | ProxyPass http://onos-cord:8182/ |
| 21 | ProxyPassReverse http://onos-cord:8182/ |
David K. Bainbridge | 49b75ef | 2016-08-24 15:24:15 -0700 | [diff] [blame] | 22 | ProxyPassReverseCookiePath "/" "/vtn/" |
| 23 | Header edit Location "(^http[s]?://[^/]*)(\.*)" "$1/vtn$2" |
| 24 | </Location> |
| 25 | |
| 26 | <Location /vtn/onos/ui/websock/> |
Scott Baker | b4adda0 | 2016-12-05 21:06:35 -0800 | [diff] [blame] | 27 | ProxyPass "ws://onos-cord:8182/onos/ui/websock/" disablereuse=on |
David K. Bainbridge | 49b75ef | 2016-08-24 15:24:15 -0700 | [diff] [blame] | 28 | </Location> |
| 29 | |
| 30 | # Map the various XOS roots to the XOS instance |
Scott Baker | 007a222 | 2016-11-10 17:25:40 -0800 | [diff] [blame] | 31 | ProxyPass /xos http://xos:8888 |
| 32 | ProxyPass /xos/ http://xos:8888/ |
Matteo Scandolo | eb059e5 | 2017-01-03 12:51:54 -0800 | [diff] [blame] | 33 | ProxyPass /api http://xos:8888/api/ |
Scott Baker | 007a222 | 2016-11-10 17:25:40 -0800 | [diff] [blame] | 34 | ProxyPass /api/ http://xos:8888/api/ |
Matteo Scandolo | eb059e5 | 2017-01-03 12:51:54 -0800 | [diff] [blame] | 35 | ProxyPass /login http://xos:8888/login |
Scott Baker | 007a222 | 2016-11-10 17:25:40 -0800 | [diff] [blame] | 36 | ProxyPass /admin/ http://xos:8888/admin/ |
| 37 | ProxyPass /static/ http://xos:8888/static/ |
| 38 | ProxyPass /loggedin/ http://xos:8888/loggedin/ |
| 39 | ProxyPass /serviceGrid/ http://xos:8888/serviceGrid/ |
Matteo Scandolo | f3db915 | 2017-01-04 14:04:46 -0800 | [diff] [blame^] | 40 | |
Matteo Scandolo | eb059e5 | 2017-01-03 12:51:54 -0800 | [diff] [blame] | 41 | # Setting XOS as default entry point |
| 42 | ProxyPass / http://xos:8888 |
David K. Bainbridge | 49b75ef | 2016-08-24 15:24:15 -0700 | [diff] [blame] | 43 | </IfModule> |
| 44 | |
| 45 | <IfModule rewrite_module> |
| 46 | RewriteEngine On |
| 47 | # Redirect (permanently) requests for /MAAS to /MAAS/. |
| 48 | RewriteRule ^/MAAS$ %{REQUEST_URI}/ [R=301,L] |
| 49 | </IfModule> |
| 50 | |
| 51 | # Redirects so that basic URLs entered go the right place |
| 52 | Redirect /fabric /fabric/onos/ui |
| 53 | Redirect /vtn /vtn/onos/ui |