Skip to content

Docker compose, scripts and setup instructions for the Aam Digital platform

License

Notifications You must be signed in to change notification settings

Aam-Digital/ndb-setup

Repository files navigation

Aam Digital Setup

This repository describes how to set up everything that is needed to run the Aam Digital case management system in production. This includes deploying the app, deploying and connecting the database and optionally deploying and connecting the permission backend and keycloak.

The source code of the actual application, as well as instructions to run it on your local machine during development, can be found in the Aam-Digital/ndb-core repository.

(!) copy the example.* files (e.g. setup.example.env) and add your actual variables and config

Systems requirements

The deployment works with minimal requirements. All you need is a system that runs Docker and allows to reach endpoints through a public URL. For a single instance a server with 2GB RAM, a single CPU and 20GB disc space is sufficient. With more data and/or more deployments more RAM and CPU power might be necessary or the sync could start to become very slow. The required disc space scales with the amount of data and especially images and attachments that are saved in the application.

To monitor the hardware usage this repo contains a Prometheus setup. This can be connected with Grafana to create a system dashboard and trigger alerts on critical performance.

Deploying the application

The interactive script interactive_setup.sh walks you through the process of setting up new applications. Running the setup script will create a new folder in the same parent folder, next to the cloned repo. You can use the script multiple times to create new instances.

  1. Clone this repository
  2. Set up local environment by copying setup.example.env file and editing the setup.env and keyloak/.env
  3. Then run the script and follow the questions in the console to generate the required .env and other files:

    ./interactive_setup.sh

The following things can be automatically done

  1. Deploy the application
  2. (optional) add the permission backend
  3. (optional) connect with a running Keycloak
  4. (optional) migrate users from CouchDB to Keycloak

To log errors with Sentry, simply set the variable SENTRY_DSN in the .env file to you sentry DSN.

Adjusting the script

Some things have to be set for the interactive setup script through environment variables. Have a look at interactive_setup.sh to see which .env files are loaded there.

  1. Domain name for the final applications (variable domain)
  2. Prefix for created folders (variable prefix)
  3. the .env file of the keycloak deployment (see section User management in Keycloak)

Enabling API Modules

The scripts folder provides utilities to enable the backend and its specific API modules. Check the documentation in the comments at the top of each file for usage instructions.


Deploying under a domain name using swag-proxy

In order to make the application's docker container accessible under a public URL, you need to expose it using a tool of your choice. The system works well with the swag-proxy. This allows to automatically configure things so that the app is reachable under a specific domain name (including automatic setup of SSL certificates through letsencrypt).

This setup repository comes with a docker compose for setting up the swag-proxy. (we have multiple production instances, so as an example the aam-prod-2 config)

  1. Create the required network

    docker network create external_web

  2. In swag-proxy/docker-compose.yml set EMAIL to a valid email address and adapt the DOMAINS config to match your setup.
  3. Start the required containers (this is only needed once on a server)

    cd nginx-proxy && docker-compose up -d


User management in Keycloak

The system uses the Keycloak identity management system. All the required configuration can be found in the keycloak folder.

We use a custom build of Keycloak that includes certain plugins required for 2-Factor-Auth. Plugin versions are managed within that custom docker image in Aam-Digital/aam-cloud-infrastructure.

To start the required docker containers execute the following (this is only needed once on a server, you can skip these steps if you just want to add another Aam Digital instance to an existing keycloak server):

  1. Open the file keycloak/.env
  2. Set the password variables to secure passwords and assign valid urls for the Keycloak (without https://)
  3. Start the required containers

    cd keycloak && docker-compose up -d

Once done, applications can be connected with Keycloak through the interactive_setup.sh.

keycloak/realm_config.json provides a sample configuration that the interactive setup script uses (replacing some placeholders automatically). You can create a custom realm_config.json in each baseConfig folder to overwrite this.

2-Factor-Auth

Keycloak supports a second login factor through the methods described below:

  • Authenticator App
  • E-Mail OTP

Authenticator app OTP

The only built-in second factor ist OTP using a Authenticator app. This can be enabled by editing a specific user in the Keycloak "Administration Console" and adding the Configure OTP in the "Required user actions". It can also be activated for everyone by changing the Browser - Conditional OTP in the used Browser flow from Conditional to Required.

Email OTP

Through 3rd party libraries OTP via Email is supported. This also comes with the option to trust the device for a configured time period (during which you do not have to enter the OTP when logging in).

To enable this feature visit <KEYCLOAK_URL>/admin/master/console/#/<REALM>/authentication/ (i.e. open the "Authentication" section of the Keycloak realm) and follow the described steps below ("Activating Email 2FA"). If you created this realm using a recent version of the realm_config.json then you should find a flow with the name Email 2FA, otherwise see the steps below in the next section ("Setting up Email OTP manually").

Activating Email 2FA

To activate 2FA over email, click on the 3 dot menu on the right of the Email 2FA flow and select Bind flow and select Browser flow. After saving, when trying to log in to the app you should be asked to enter the OTP which has been sent to the email that is associated with the username.

Deactivating Email 2FA

Similar to the steps of activating the 2FA flow, to disable it you need to re-activate the normal "browser" flow: Click on the 3 dot menu on the right of the browser flow, select Bind flow and then select Browser flow.

Disabling 2FA for a specific account can be configured but is not part of default setup yet. Please check with existing sample systems for the setup to make the following instructions work:

To disable email 2FA for only one individually user assign the Keycloak User Role "no-email-2fa" to that user account to skip 2FA for that person. If the role does not exist yet, create it in the Keycloak Admin interface. (The logic of this special role is configured within the Email 2FA Authentication flow as a condition)

Setting up Email OTP manually

If the Email 2FA flow is not available in the realm (section "Authentication"), you can configure it manually:

  1. Click on the 3 dot menu of the browser flow and select duplicate
  2. Enter Email 2FA as name
  3. Delete the last two steps (Condition - user configured and OTP form)
  4. Click on the + button in the last row (Email 2FA Browser - Conditional OTP)
  5. Select Add condition, there select Condition - Device Trusted and click Add
  6. On the new step (Condition - Device Trusted) click on Disabled and change it to Required
  7. Click on the cog icon next to Required and enter trusted-config as Alias and click Save
  8. Again click on the + icon for Email 2FA Browser - Conditional OTP
  9. Select Add step, there select Email OTP and click Add
  10. Change Disabled to Required for Email OTP
  11. Again click on the + icon for Email 2FA Browser - Conditional OTP
  12. Select Add step, there select Register Trusted Device and click Add
  13. Change Disabled to Required for Register Trusted Device

Now the flow is configured correctly, and you can start using it the same way it has been described above.

In the step Email OTP you can configure the amount of seconds for which an OTP is valid and in the Register Trusted Device step you can configure how long a device will be trusted (e.g. P30d for 30 days or PT24h for 24 hours).

Further options

There are many ways in which the authentication flow can be configured. For example, you could also add the trust device step to the OTP with authenticator app, or you could make the user decide which OTP (email or app) should be used. Consult the Keycloak docs for ways to edit flows or configure new ones.


API Integrations and SQL Reports

It is possible to calculate reports for the app's data using SQL queries. For details information, check our Report documentation

Set up API Integration

(e.g. with TolaData)

  1. Enable the reporting backend:
    • add aam-backend-service to you COMPOSE_PROFILES .env variable to activate that container in the docker compose: COMPOSE_PROFILES=replication-backend,aam-backend-service
    • add AAM_BACKEND_SERVICE_URL=http://aam-backend-service:3000 to the .env file that feeds into the docker-compose.yml
  2. Set up Reporting API according to aam-services README
    • (re-up the docker compose and confirm the new containers are running)
    • follow instructions there to set up an auth client to access results via API

Backups

Basic backup scripts are available in the "scripts" folder.

Set the setup.env variables for the backup root folder and passphrase (to encrypt backups). Then run the backup.sh script to create a current backup.

Scheduled regular backups

You can set up the script to run via cron:

Start the new cron job

crontab -e
# then enter the following (adjusted to your actual file locations)
0 2 * * *       /var/docker/ndb-setup/backup.sh 
# the above runs every day at 2 am 

Restoring a backup

Under /var/docker run the interactive script backup-recover.sh to load a backup for a certain client from a certain date.

To manually load a backup follow these steps:

  1. Find the passphrase in the /var/docker/backup.sh file.
  2. Go to mnt/<backup-volume>/backups
  3. Decrypt a backup using
    gpg --passphrase \<passphrase\> -o output -d \<backup-file\>
  4. Decompress the backup
    mkdir ./unpacked && tar -xzvf output --directory ./unpacked
  5. Go to application where backups should be applied and stop docker container
    cd /var/docker/ndb-\<instance\>
    docker compose down
  6. Load the backup
    mv couchdb couchdb_old && mv ~/backups/unpacked/var/docker/ndb-\<instance\>/couchdb ./couchdb
  7. Start the docker containers
    docker compose up -d
  8. After everything works as expected, delete all temporary data
    rm -rf couchdb_old ~/backups/output ~/backups/unpacked

When applying a backup, do not forget to clear you browser cache before opening the application again. Otherwise the previously corrupted data will be synced from the browser to the DB that has just been backed up. To delete all local data go to https://<instance>.aam-digital.com/support and press Reset Application. All users, which have corrupted data will need to do this.

More information on CouchDB backups can be found here.


Building the Docker Image

If you just want to use ndb-core through docker, you should not have to build the image yourself. Use the pre-built image on Docker Hub aamdigital/ndb-server.

The Dockerfile to build the image are part of the ndb-core repository. See the /build sub folder there.

The image builds upon a simple nginx webserver and modifies the configuration to include a reverse proxy for the domain.com/db URLs to access the CouchDB database from the same domain, avoiding CORS issues.

About

Docker compose, scripts and setup instructions for the Aam Digital platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •