Skip to content

Commit

Permalink
feat: added hook endpoint to nginx router
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed May 25, 2024
1 parent 9ae1cfe commit f5f0758
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit f5f0758

Please sign in to comment.