blob: efe3abb5c6d525cac82a08fc236622d648617848 [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 Scandolo3eaeb3e2016-01-28 13:26:50 -080043 //directory: true,
Matteo Scandoloc6036502016-01-26 15:17:10 -080044 routes: {
45 '/rs/dashboard': './mocks/dashboard.json',
46 '/rs/bundle': './mocks/bundle.json',
47 '/rs/users': './mocks/users.json'
48 },
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080049 middleware: function(req, res, next){
50 if(
51 req.url.indexOf('/xos/') !== -1 ||
52 req.url.indexOf('/xoslib/') !== -1 ||
Matteo Scandoloc6036502016-01-26 15:17:10 -080053 req.url.indexOf('/hpcapi/') !== -1
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080054 ){
Matteo Scandolo61f05f52016-01-28 09:41:01 -080055 if(req.headers['X-CSRFToken']){
56 req.headers['x-csrftoken'] = req.headers['x-csrftoken'];
Matteo Scandolob0e65a62016-01-28 11:05:15 -080057 req.headers.cookie = `xoscsrftoken=${req.headers['x-csrftoken']}; xossessionid=${req.headers['sessionid']}`;
Matteo Scandolo61f05f52016-01-28 09:41:01 -080058 }
Matteo Scandolo9fb53f72016-01-26 11:34:15 -080059 proxy.web(req, res);
60 }
61 else{
62 next();
63 }
64 }
65 },
66 "port": 3000,
67 "open": "local"
Matteo Scandolo4eb4ccb2016-01-26 11:02:16 -080068};