From 6009d9816357a60f39bbf6b9de25c6e47dcc72c1 Mon Sep 17 00:00:00 2001 From: Kia Lam Date: Tue, 13 Sep 2022 12:27:36 -0700 Subject: [PATCH] Modify proxy config to allow UI to point to named sites. --- awx/ui/src/setupProxy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui/src/setupProxy.js b/awx/ui/src/setupProxy.js index e072a4f82b..8001584ca1 100644 --- a/awx/ui/src/setupProxy.js +++ b/awx/ui/src/setupProxy.js @@ -8,6 +8,7 @@ module.exports = (app) => { target: TARGET, secure: false, ws: true, + changeOrigin: true, }) ); };