NVIDIA-AI-IOT / jetcard

An SD card image for web programming AI projects with NVIDIA Jetson Nano
MIT License
207 stars 82 forks source link

setup ssl encryption for https #19

Closed BendiXB closed 1 year ago

BendiXB commented 4 years ago

I am working on securing my Jetson with HTTPS. I am using this documentation.

I have generated a ssl key using the following command: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mykey.key -out mycert.pem

Now i want t start the Notebook server with ssl using: jupyter notebook --certfile=mycert.pem --keyfile mykey.key

Now I get an error stating that my Server is already running. That is logical because I am using the server to run this commands.

I want to start the notebook server with ssl on startup. My question is: Where is the script located used to start the server on startup, so I can replace the command and start with ssl?