diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2021-05-19 11:21:26 +0200 |
---|---|---|
committer | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2021-05-19 11:21:26 +0200 |
commit | 6a7fab9a12eebe7fd902c9e04f516fa9c1ae5820 (patch) | |
tree | 065888e5dd135318b99d5ca91a95f0f8284deb5e /sdnr/wt/odlux/apps/faultApp/webpack.config.js | |
parent | caaf7cf0edd7c605c9d57c0470806d2a13ebe773 (diff) |
FaultApp bugfixes
Fix alarm notifications not displayed, too many data-provider requests
Issue-ID: CCSDK-3310
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: I5f5433c8aed9d7c00d33cea5d3ee7ea7c01d0d03
Diffstat (limited to 'sdnr/wt/odlux/apps/faultApp/webpack.config.js')
-rw-r--r-- | sdnr/wt/odlux/apps/faultApp/webpack.config.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sdnr/wt/odlux/apps/faultApp/webpack.config.js b/sdnr/wt/odlux/apps/faultApp/webpack.config.js index 8131c9835..da092d0dc 100644 --- a/sdnr/wt/odlux/apps/faultApp/webpack.config.js +++ b/sdnr/wt/odlux/apps/faultApp/webpack.config.js @@ -125,27 +125,27 @@ module.exports = (env) => { }, proxy: { "/oauth2/": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", secure: false }, "/database/": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", secure: false }, "/restconf/": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", secure: false }, "/rests/": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", secure: false }, "/help/": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", secure: false }, "/websocket": { - target: "http://10.20.6.29:48181", + target: "http://sdnr:8181", ws: true, changeOrigin: true, secure: false |