From 71bfda2016d7109a64eb5aecf46a74f859a80ef2 Mon Sep 17 00:00:00 2001 From: Karin Borm Date: Mon, 22 Mar 2021 09:54:12 +0100 Subject: [PATCH] installation: comment out certificate folder for nginx (leads to error when creating containers) --- README.md | 7 ++++--- docker-compose.yml | 2 +- src/VERSION.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d4264afe..7e90d7a0 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,10 @@ docker-compose.yml file. E.g. for American English set LOCALE to en_US.UTF-8: ##### Optional: HTTPS For enabling HTTPS (port 443) you must -* put your certificate files into /data/certs (or adjust folder name in docker-compose.yml) -* comment in 443 configuration in nginx/nginx.conf -* set servername and adjust certificate file names in nginx/nginx.conf +* `docker-compose.yml`: comment in `- /data/certs:/etc/nginx/certs` under `nginx` +* put your certificate files into `/data/certs` (or adjust folder name in `docker-compose.yml`) +* `nginx/nginx.conf`: comment in 443 configuration +* `nginx/nginx.conf`: set servername and adjust certificate file names ##### Optional: Different Test Framework Versions diff --git a/docker-compose.yml b/docker-compose.yml index a1def80e..eb409a9f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -74,7 +74,7 @@ services: # static content to serve - ./media:/praktomat/media # ssl certificate - - /data/certs:/etc/nginx/certs + # - /data/certs:/etc/nginx/certs ports: - 80:80 - 443:443 diff --git a/src/VERSION.py b/src/VERSION.py index 6e7eb98c..6ce70097 100644 --- a/src/VERSION.py +++ b/src/VERSION.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -version = "Version 4.8.0 | 20210205" +version = "Version 4.8.1 | 20210322"