From 0ec82db13f2247602fb898a8ca857052d6196fa6 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 27 Sep 2020 21:12:28 +0530 Subject: added sample curie systemd service with https --- misc/curie_https.service | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 misc/curie_https.service diff --git a/misc/curie_https.service b/misc/curie_https.service new file mode 100644 index 0000000..08d89f9 --- /dev/null +++ b/misc/curie_https.service @@ -0,0 +1,12 @@ +[Unit] +Description=gunicorn daemon +After=network.target + +[Service] +User=ubuntu +Group=ubuntu +WorkingDirectory=/home/ubuntu/Curie-Web +ExecStart=/usr/bin/gunicorn api:app -k uvicorn.workers.UvicornWorker -b "0.0.0.0:7589" --certfile=cert.pem --keyfile=privkey.pem + +[Install] +WantedBy=multi-user.target -- cgit v1.2.3