How make https enable for dash app

Hi,

I have developed dashboard for data from Jira and other sources. I would like to add SSL, like i would like to enable https for accessing application. Can anyone help on how to enable https for dash app please.

Thanks
Ganesh

I’m sure that Plotly will gladly sell you a Dash Enterprise server that will handle this, but if you want to roll your own, the best way in my opinion is to do SSL termination in a web server such as Nginx, Apache or Envoy, which then passes the calls to your Python app. A search for related keywords finds various blog posts with instructions such as https://blog.miguelgrinberg.com/post/running-your-flask-application-over-https.

1 Like

Thank you so much for information…