From 8515052e1a6de2de56effbc61c73d3aa80169a93 Mon Sep 17 00:00:00 2001 From: Aijana Schumann Date: Mon, 15 Feb 2021 18:22:28 +0100 Subject: Add OAuth support to odlux Extend odlux to support oauth, support external login provider for sign-in Issue-ID: CCSDK-3167 Signed-off-by: Aijana Schumann Change-Id: Id5772e0026fa7ebda22c41c2620a7868598f41aa --- sdnr/wt/odlux/apps/connectApp/webpack.config.js | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'sdnr/wt/odlux/apps/connectApp/webpack.config.js') diff --git a/sdnr/wt/odlux/apps/connectApp/webpack.config.js b/sdnr/wt/odlux/apps/connectApp/webpack.config.js index 4c458a65f..7f36e4e17 100644 --- a/sdnr/wt/odlux/apps/connectApp/webpack.config.js +++ b/sdnr/wt/odlux/apps/connectApp/webpack.config.js @@ -126,27 +126,32 @@ module.exports = (env) => { }, proxy: { "/oauth2/": { - target: "http://10.20.6.29:28181", + target: "http://sdnr:8181", secure: false }, + + "/oauth/": { + target: "http://sdnr:8181", + secure: false + }, "/database/": { - target: "http://10.20.6.29:28181", + target: "http://sdnr:8181", secure: false }, - "/tree/": { - target: "http://10.20.6.29:28181", + "/restconf/": { + target: "http://sdnr:8181", secure: false }, "/rests/": { - target: "http://10.20.6.29:28181", + target: "http://sdnr:8181", secure: false }, "/help/": { - target: "http://10.20.6.29:28181", + target: "http://sdnr:8181", secure: false }, "/websocket": { - target: "http://10.20.6.29:28181", + target: "http://sdnr:8181", ws: true, changeOrigin: true, secure: false -- cgit 1.2.3-korg