Hi guys, I've been trying to get my jupyter notebook to run behind an nginx reverse proxy and everything seems to be going well, until i actually try to connect to the kernel in a notebook. Here's my /etc/nginx/conf.d/configuration.conf configuration upfront: upstream notebook { server localhost:8888; } server { listen 443; ssl on; server_name notebook.mydomain.com www.notebook.mydomain.com; ssl_c