Setup login page for Hasura Selfhosted #9383
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@blueoceans2002 |
Beta Was this translation helpful? Give feedback.
-
Hi @adas98012 Yes you are right we are using docker Hasura [v2.16.1] |
Beta Was this translation helpful? Give feedback.
-
Hey @blueoceans2002 Best practicesWe would recommend to disable console in production environment because of the lots of security reasons. We have written a production checklist here which describes best practices for securing your console and APIs. Link - https://hasura.io/docs/latest/deployment/production-checklist/#disable-the-console TLDR; you disable console by default everytime thereby hiding it from anyone on the internet to access it. If you/devs wanted to use console, then they can install Hasura CLI and by running Practical approachFor securing the console with login page
For adding collaborators
I hope this helps! |
Beta Was this translation helpful? Give feedback.
Hey @blueoceans2002
Best practices
We would recommend to disable console in production environment because of the lots of security reasons. We have written a production checklist here which describes best practices for securing your console and APIs. Link - https://hasura.io/docs/latest/deployment/production-checklist/#disable-the-console
TLDR; you disable console by default everytime thereby hiding it from anyone on the internet to access it. If you/devs wanted to use console, then they can install Hasura CLI and by running
hasura console
they can access the console from CLI. The drawback here with CLI console would be, that it would automatically update your metadata/migrations, if you …