diff --git a/server/node/server.cjs b/server/node/server.cjs index af4d189e..b2871d9d 100644 --- a/server/node/server.cjs +++ b/server/node/server.cjs @@ -240,8 +240,8 @@ async function hubProxyHandler(req, res, next) { } app.get('/hub-proxy/*', hubProxyHandler); -// app.post('/hub-proxy/*', hubProxyHandler); -// app.put('/hub-proxy/*', hubProxyHandler); +app.post('/hub-proxy/*', hubProxyHandler); +app.put('/hub-proxy/*', hubProxyHandler); app.get('/proxy', reverseProxyFunc_get); app.get('/proxy2', reverseProxyFunc_get); @@ -457,4 +457,4 @@ async function startServer() { (async () => { await startServer(); -})(); \ No newline at end of file +})();