KON-703 Keine Authentifizierung - Logout/Portal Page
diff --git a/src/main/asciidoc/howto/howtoRun.adoc b/src/main/asciidoc/howto/howtoRun.adoc
index c703116..ccbbec8 100644
--- a/src/main/asciidoc/howto/howtoRun.adoc
+++ b/src/main/asciidoc/howto/howtoRun.adoc
@@ -221,9 +221,37 @@
 
 . Create a folder named `contactdatabase` in `<tomcat>/webapps` folder
 . After building the Frontend (see `howtoBuild` file) copy the content of the `dist` folder to `<tomcat>/webapps/contactdatabase`
+. Configure the Frontend, see "Configuration Settings" below.
 . Start your Tomcat
 
 Now log in with the "Portal Application" and open the "Contact Base Data" module. If it shows the overview and the its example data
 the application was successfully deployed.
 
+==== Configuration Settings
+Open <tomcat>/webapps/contactdatabase/config/env.json
+
+[source, json]
+----
+{"env":"production"}
+----
+
+Here you can set which of the configuration files residing in <tomcat>/webapps/contactdatabase/config/*
+will be used. If set to "production" like above, the *production.json* will be used.
+
+To enable the redirect to the Login (Portal) Page open the configuration file (e.g.: *production.json*) and set the variable "portalLoginUrl" pointing to your Portal Login.
+
+[source, json]
+----
+...
+"paths": {
+"imagesRoot": "/assets/images/",
+"userImageFolder": "/assets/images/users/",
+"portalLoginUrl": "http://entopkon:8880/portalFE/#/login"
+},
+...
+----
+
+
+If the variable "portalLoginUrl" is not set or missing the default "Logout Page" will be shown.
+