From 985e0be1cee22f43704a82e059e748f463235156 Mon Sep 17 00:00:00 2001 From: mb Date: Wed, 29 Nov 2023 16:55:32 +0100 Subject: [PATCH] 'README.md' updaten --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 7ae5f38..5d7159e 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,20 @@ This creates a virtual environment at `.venv` and installs all the dependencies sudo apt install pandoc ``` +Configure your webserver, to connect your application root (for example `octomode.domain.org` or `sub.domain.org/octomode/`) to the port on which the flask application is running (`localhost:5001` by default). + +This is an example for nginx webservers: + +``` + # ---------------------------------------------------- + # OCTOMODE + + location /octomode/ { + proxy_pass http://localhost:5555; + } + +``` + And finally, run the application. ```