37 lines
965 B
Text
37 lines
965 B
Text
|
# this file is directly sourced by some bash scripts
|
||
|
# so there should be no space around the "="
|
||
|
|
||
|
LANGUAGE=en
|
||
|
CRYPTOBOX_USER=cryptobox
|
||
|
SCAN_DEVICES="sd loop"
|
||
|
|
||
|
# web interface
|
||
|
HTML_TEMPLATE_DIR=/usr/share/cryptobox/templates
|
||
|
STYLESHEET_URL=/cryptobox-misc/cryptobox.css
|
||
|
|
||
|
# directories
|
||
|
LANGUAGE_DIR=/usr/share/cryptobox/lang
|
||
|
DOC_DIR=/usr/share/doc/cryptobox/html
|
||
|
CONFIG_DEFAULTS_DIR=/usr/share/cryptobox/defaults
|
||
|
|
||
|
# some files
|
||
|
LOG_FILE=/var/log/cryptobox.log
|
||
|
|
||
|
# crypto settings
|
||
|
# TODO: for now, the usual default cipher does not work on ARM, so we enable it during development
|
||
|
#DEFAULT_CIPHER=aes-cbc-essiv:sha256
|
||
|
DEFAULT_CIPHER=aes
|
||
|
DEV_MAPPER_DIR=/dev/mapper
|
||
|
|
||
|
# distribution specific configuration
|
||
|
# examples can be found in /usr/local/share/cryptobox/distributions
|
||
|
DISTRIBUTION_CONF=/etc/cryptobox/distribution.conf
|
||
|
|
||
|
# choose a debug level:
|
||
|
# 0 => no debug messages at all
|
||
|
# 1 => critical errors (default)
|
||
|
# 2 => warning messages
|
||
|
# 3 => information
|
||
|
DEBUG_LEVEL=1
|
||
|
|