blob: 6888103dc62fa96ef1dd40d9cf24dae2f3f2dcf2 [file] [log] [blame]
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -08001
2/*
3 |--------------------------------------------------------------------------
4 | Browser-sync config file
5 |--------------------------------------------------------------------------
6 |
7 | For up-to-date information about the options:
8 | http://www.browsersync.io/docs/options/
9 |
10 | There are more options than you see here, these are just the ones that are
11 | set internally. See the website for more info.
12 |
13 |
14 */
15
16var httpProxy = require('http-proxy');
17var environment = process.env.NODE_ENV;
18
19if (environment){
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080020 var conf = require(`./env/${environment}.js`);
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080021}
22else{
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080023 var conf = require('./env/default.js')
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080024}
25
26var proxy = httpProxy.createProxyServer({
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080027 target: conf.host || 'http://0.0.0.0:9999'
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080028});
29
30proxy.on('error', function(error, req, res) {
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080031 res.writeHead(500, {
32 'Content-Type': 'text/plain'
33 });
34 console.error('[Proxy]', error);
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080035});
36
37module.exports = {
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080038 "files": [
39 './src/**/*'
40 ],
41 "server": {
42 baseDir: './src',
Matteo Scandoloc6036502016-01-26 15:17:10 -080043 routes: {
44 '/rs/dashboard': './mocks/dashboard.json',
45 '/rs/bundle': './mocks/bundle.json',
46 '/rs/users': './mocks/users.json'
47 },
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080048 middleware: function(req, res, next){
49 if(
50 req.url.indexOf('/xos/') !== -1 ||
51 req.url.indexOf('/xoslib/') !== -1 ||
Matteo Scandoloc6036502016-01-26 15:17:10 -080052 req.url.indexOf('/hpcapi/') !== -1
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080053 ){
Matteo Scandolo39c65a52016-01-27 12:00:18 -080054 //if(conf.xoscsrftoken && conf.xossessionid){
55 // req.headers.cookie = `xoscsrftoken=${conf.xoscsrftoken}; xossessionid=${conf.xossessionid}`;
56 // req.headers['x-csrftoken'] = conf.xoscsrftoken;
57 //}
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080058 proxy.web(req, res);
59 }
60 else{
61 next();
62 }
63 }
64 },
65 "port": 3000,
66 "open": "local"
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080067};