blob: e383c275a3c9af3826ec73c73f0a98d065c662d7 [file] [log] [blame]
Matteo Scandolofb46ae62017-08-08 09:10:50 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandoloc80ccbd2017-02-27 16:24:33 -080019const httpProxy = require('http-proxy');
20
Matteo Scandolo47c53fc2017-03-23 14:11:32 -070021const target = process.env.PROXY || '192.168.46.100';
22
Matteo Scandolo63498472017-09-26 17:21:41 -070023console.info(`Proxying request to: ${target}`);
24
Matteo Scandoloc80ccbd2017-02-27 16:24:33 -080025const proxy = httpProxy.createProxyServer({
Matteo Scandoloe015fa92017-05-10 09:52:36 -070026 target: `http://${target}`
Matteo Scandoloc80ccbd2017-02-27 16:24:33 -080027});
28
Matteo Scandolo98b5f5d2017-03-17 17:09:05 -070029const extensionsProxy = httpProxy.createProxyServer({
Matteo Scandolo37d56062017-04-24 15:03:00 -070030 target: `http://${target}/xos/`
Matteo Scandolo98b5f5d2017-03-17 17:09:05 -070031});
32
Matteo Scandoloe015fa92017-05-10 09:52:36 -070033const socketProxy = httpProxy.createProxyServer({
34 target: `http://${target}/`
35});
36
Matteo Scandoloc80ccbd2017-02-27 16:24:33 -080037proxy.on('error', function(error, req, res) {
Matteo Scandoloe015fa92017-05-10 09:52:36 -070038 res.writeHead(500, {'Content-Type': 'text/plain'});
Matteo Scandoloc80ccbd2017-02-27 16:24:33 -080039 console.error('[Proxy]', error);
40});
41
Matteo Scandoloe015fa92017-05-10 09:52:36 -070042extensionsProxy.on('error', function(error, req, res) {
43 res.writeHead(500, {'Content-Type': 'text/plain'});
44 console.error('[extensionsProxy]', error);
45});
46
47socketProxy.on('error', function(error, req, res) {
48 res.writeHead(500, {'Content-Type': 'text/plain'});
49 console.error('[socketProxy]', error);
50});
51
Matteo Scandolo98b5f5d2017-03-17 17:09:05 -070052module.exports = {
53 proxy,
Matteo Scandoloe015fa92017-05-10 09:52:36 -070054 extensionsProxy,
55 socketProxy
Matteo Scandolo98b5f5d2017-03-17 17:09:05 -070056};