Jonathan
Jonathan

Reputation: 641

Can you embed https certificate in bokeh application? Python

We have configured a bokeh application in python and would like to serve it with https on a windows system. Is there a way to embed the certificate information for https into the bokeh application itself, so it serves https?

Upvotes: 1

Views: 191

Answers (1)

bigreddot
bigreddot

Reputation: 34608

As of version 0.13.0, Bokeh does not currently have any built in capability to serve HTTPS. In order to serve HTTPS you would need to run the Bokeh server behind a proxy that terminates the SSL connection. There are specific instructions for doing this with Nginx in the docs: Reverse Proxying with Nginx and SSL

Upvotes: 2

Related Questions