apps/api: proxy only GET

This commit is contained in:
vchikalkin 2023-11-02 11:38:49 +03:00
parent d61532dcea
commit 6cb0be97b1

View File

@ -35,6 +35,7 @@ async function bootstrap() {
await app.register(proxy, {
http2: false,
httpMethods: ['GET'],
upstream: `http://${env.WEB_SERVER}`,
});