Hello, I deployed datahub with docker quickstart a...
# all-things-deployment
s
Hello, I deployed datahub with docker quickstart and I read datahub-gms does not support SSL - is this true ? How can this be configured with an SSL certificate? to be specific I want that the application on port 9002 works with https - how is this doable?
i
Hello Ewald, Yes its true that gms does not support SSL. What is typically done is to deploy a reverse proxy in front of gms that handles ssl communication and redirects the requests to gms.
Note that datahub quickstart is for testing & local deployments. It was not designed for production use-cases. For that please DataHub in Kubernetes.
s
thanks for the information we do it with apache proxypass
Why is it not suitable for production?
i
Because it is deployed in a single machine using docker-compose under the hood. Making it very fragile if the vm should have issues.
Would also make it hard to scale if need be
s
ok understandable - thanks for the hints