18 lines
398 B
Plaintext
18 lines
398 B
Plaintext
USER=mastodon
|
|
USERHOME="/home/mastodon"
|
|
INSTALLROOT="${USERHOME}/live"
|
|
RBENV_ROOT="${USERHOME}/.rbenv"
|
|
PATH="${RBENV_ROOT}/bin:${RBENV_ROOT}/shims:$PATH"
|
|
|
|
# these are tuned to rather small values from defaults to suite
|
|
# compact instance feel free to experiment
|
|
DB_POOL=5
|
|
SIDEKIQ_WORKERS=5
|
|
|
|
WEB_BIND=127.0.0.1
|
|
WEB_PORT=3000
|
|
# should be 0 (single process) or >1
|
|
WEB_CONCURRENCY=1
|
|
WEB_MAX_THREADS=2
|
|
|