Do we have any best practices for enabling UI via ...
# all-things-deployment
w
Do we have any best practices for enabling UI via https : I see there is a placeholder for sslContext do we have an INterface defined which we can use
q
I’ve had success using Apache or Nginx (i’ve tried both) to offload SSL on the server running datahub and proxy the traffic to the datahub endpoint. (Single server docker deployment, no Kubernetes etc)
w
thanks
I saw some flags in application.yml so was thining whether there is some way
useSSL: ${DATAHUB_GMS_USE_SSL:${GMS_USE_SSL:false}} sslContext:
q
If i’m not mistaken that is for SSL connection to the backend of datahub. The React Web App does not natively support SSL and needs an SSL proxy of some form ahead of it
w
ok