Skip to content
Snippets Groups Projects
Commit 1582cd5f authored by Nils G.'s avatar Nils G.
Browse files

Updated README

parent c471e9e4
No related branches found
No related tags found
No related merge requests found
...@@ -70,3 +70,20 @@ sudo do-release-upgrade ...@@ -70,3 +70,20 @@ sudo do-release-upgrade
``` ```
ausgefuehrt werden. Das dauert so 30min und erfordert eventuell Benutzereingaben ausgefuehrt werden. Das dauert so 30min und erfordert eventuell Benutzereingaben
8) LetsEncrypt
Die Zertifikate werden automatisch erneuert. Definiert ist das in der Crontab vom Root Nutzer dazu:
```
sudo su
```
dann
```
crontab -e
```
und die Datei:
```
00 5 * * 1 /usr/bin/certbot renew
55 5 * * 1 /usr/sbin/service nginx restart
```
Holt sich 1x in der Woche automatisch neue Zertifikate und startet nginx neu.
...@@ -23,7 +23,11 @@ To communicate with the WebClients directly the server uses websockets. To make ...@@ -23,7 +23,11 @@ To communicate with the WebClients directly the server uses websockets. To make
python ./websocket_messaging.py -k <KEY> -p 8888 python ./websocket_messaging.py -k <KEY> -p 8888
``` ```
the hmac hardcoded into this app is ``67c371fd204fbcbf9742310d1a9d951bcca1aa86`` the hmac hardcoded into this app is ``67c371fd204fbcbf9742310d1a9d951bcca1aa86``
1) If you run web2py with https enabled, you MUST also provide the certificat to the websockets server (Provide the path). More help via: 1) If you run web2py with https enabled, you MUST also provide the Certificate to the websockets server (Provide the path). More help via:
``` ```
python ./websocket_messaging.py --help python ./websocket_messaging.py --help
``` ```
### Serveradministration
See [Serveradministration](/Dockerfiles)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment