Merge pull request #23847 from backstage/rugvip/proxy-unauth

proxy-backend: allow unauthenticated requests
This commit is contained in:
Ben Lambert
2024-03-26 15:42:25 +01:00
committed by GitHub
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-proxy-backend': patch
---
Allow unauthenticated requests.
+4
View File
@@ -44,6 +44,10 @@ export default createBackendPlugin({
logger: loggerToWinstonLogger(logger),
}),
);
httpRouter.addAuthPolicy({
allow: 'unauthenticated',
path: '/',
});
},
});
},