### Mandatory variables
# the location where foreman is installed
FOREMAN_HOME=/var/lib/foreman
BUNDLE_GEMFILE=/var/lib/foreman/Gemfile
# the port and bind address which foreman web server is running at
# note that if the foreman user is not root, it has to be a > 1024
# mandatory
FOREMAN_PORT=2346
FOREMAN_BIND="127.0.0.1"

# the rails environment in which foreman runs
RAILS_ENV=production
# foreman apipie languages list, space separated
FOREMAN_APIPIE_LANGS=ru

### Optional variables
# puma settings
FOREMAN_PUMA_THREADS_MIN=2
FOREMAN_PUMA_THREADS_MAX=20
FOREMAN_PUMA_WORKERS=4
