From f5f07582828813740c97cc53f72da3acc0c6ddf5 Mon Sep 17 00:00:00 2001 From: Frank Date: Sat, 25 May 2024 15:53:31 +0200 Subject: [PATCH] feat: added hook endpoint to nginx router --- nginx/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 539bd5c2..fd474f4c 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -14,6 +14,11 @@ server { proxy_pass ${BACKEND}; } + # drive graphql endpoint + location ${BASE_PATH}/h { + proxy_pass ${BACKEND}; + } + # GraphQL Explorer location ${BASE_PATH}/explorer { proxy_pass ${BACKEND};