Expand installation instructions (#1)

* Expanded installation instructions

Installation was moved to a new file, GUIDE.md, where you can include all documented information about Shynet.

I also included SSL without a reverse proxy instructions and a shell script for SSL through Gunicorn.
This commit is contained in:
Jason Carpenter
2020-04-24 13:00:20 -04:00
committed by GitHub
parent 7ef54175b0
commit 9881dedac0
3 changed files with 196 additions and 65 deletions

10
shynet/ssl.webserver.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Start Gunicorn processes
echo Launching Shynet web server...
exec gunicorn shynet.wsgi:application \
--bind 0.0.0.0:8080 \
--workers 3 \
--timeout 100 \
--certfile=cert.pem \
--keyfile=privkey.pem