Hi!
I want to deploy Hasura under API Gateway, in my case Krakend.
In our case one Gateway proxying several apps. Each application should have some base prefix for urls.
I want to specify somehow a base prefix, for example /hasura.
I expect that all console urls will be similar to: http://127.0.0.1:8080/hasura/console/data/schema/public
and graphql urls something like:
http://127.0.0.1:8080/hasura/v1/query
I tried to make some changes in client and haskell part, simply replacing all urls & build docker, but it did not help.
Maybe you can point me where I should make such changes, or maybe there is exist a more simpler way to do it.
Thanks!