Looking for Cloud Services or Professional Support? Check restheart.com

Configuration File

Sample configuration file

An example of a complete configuration file is available here.

Configuration options

Note: The following options are fully available from RESTHeart version 3.7.0.

Properties files

Starting from RESTHeart 3.7.0 it is possibile to pass an optional properties file (following the Java Properties syntax) as a startup parameter, via a OS environment variable or, starting with RESTHeart 3.9, via a Java property (which you can pass to the JVM with the “-D” command line parameter). This has proven to be very useful when RESTHeart is deployed in several environments and the configuration files are just slightly different among the environments. In the past was necessary to copy and paste any modification on all the yaml configuration files, but now you can have a single parametric yaml file, with a set of small, different properties files for each environment.

For example, the dev.properties file in etc/ folder contains the following properties:

instance-name = development
default-representation-format = PLAIN_JSON
mongo-uri = mongodb://127.0.0.1
idm.conf-file = ../etc/security.yml
access-manager.conf-file = ../etc/security.yml
log-level = DEBUG
query-time-limit = 0
aggregation-time-limit = 0

The restheart.yml file contains the above parameters, expressed with the “Mustache syntax” (triple curly braces to indicate parametric values). Have a look at the below fragment for an example:

instance-name: {{{instance-name}}}

default-representation-format: {{{default-representation-format}}}

mongo-uri: {{{mongo-uri}}}

idm:
  implementation-class: org.restheart.security.impl.SimpleFileIdentityManager
  conf-file: {{{idm.conf-file}}}
access-manager:
  implementation-class: org.restheart.security.impl.SimpleAccessManager
  conf-file: {{{access-manager.conf-file}}}

log-level: {{{log-level}}}

query-time-limit: {{{query-time-limit}}}

aggregation-time-limit: {{{aggregation-time-limit}}}

The implementation uses the Mustache.java library, which is a derivative of mustache.js, to create parametric configurations for RESTHeart.

Of course, you can decide which values in restheart.yml you want to become parametric or you can just use a static file as before version 3.7, this new configuration with properties is fully optional.

To start RESTHeart and provide it with a properties file pass the --envfile command line parameter:

java -Dfile.encoding=UTF-8 -server -jar target/restheart.jar etc/restheart.yml --envfile etc/dev.properties

Alternatively, pass the envfile path via RESTHEART_ENVFILE environment variable:

$ export RESTHEART_ENVFILE=etc/dev.properties
$ java -Dfile.encoding=UTF-8 -server -jar target/restheart.jar etc/restheart.yml

Note: starting with release 3.9 it’s possibile to pass also the main RESTHeart’s configuration file via the RESTHEART_CONFFILE environment variable, for example:

$ export RESTHEART_CONFFILE=etc/restheart.yml

This approach allows to share one single configuration file among several environments. For example, one could create dev.properties, test.properties and production.properties, one for each environment, with one single common restheart.yml configuration file.

Environment variables

RESTHeart 3.7.0 introduces also the possibility to override any primitive type parameter in restheart.yml with an environment variable. Primitive types are:

  • String
  • Integer
  • Long
  • Boolean

For example, the parameter mongo-uri in the yaml file can be overridden by exporting a MONGO_URI environment variable:

$ export MONGO_URI="mongodb://127.0.0.1"

The following log entry appears at the very beginning of logs during the startup process:

[main] WARN  org.restheart.Configuration - >>> Overriding parameter 'mongo-uri' with environment value 'MONGO_URI=mongodb://127.0.0.1'

A shell environment variable is equivalent to a yaml parameter in restheart.yml, but it’s all uppercase and '-' (dash) are replaced with '_' (underscore).

Remember: environment variables replacement doesn’t work with YAML structured data in configuration files, like arrays or maps. You must use properties files and mustache syntax for that.

Command line parameters

To know the available CLI parameters, run RESTHeart with --help:

$ java -jar target/restheart.jar --help
Usage: java -Dfile.encoding=UTF-8 -jar -server restheart.jar [options] 
      <Configuration file>
  Options:
    --envFile, --envfile, -e
      Environment file name
    --fork
      Fork the process
      Default: false
    --help, -?
      This help message