28 lines
718 B
Plaintext
28 lines
718 B
Plaintext
# Main configuration directory.
|
|
@{MAIN_CONF_DIR}=@{HOME}/.config/baguette
|
|
|
|
# Main configuration files.
|
|
@{AUTHD_CONFIG}=@{MAIN_CONF_DIR}/auth.yml
|
|
@{DNSMANAGERD_CONFIG}=@{MAIN_CONF_DIR}/dnsmanager.yml
|
|
|
|
# Databases.
|
|
@{AUTHD_DB_PATH}=@{HOME}/tmp/db-authd
|
|
@{DNSMANAGERD_DB_PATH}=@{HOME}/tmp/db-dnsmanagerd
|
|
|
|
# Key to encrypt passwords.
|
|
@{AUTHD_DB_KEY}=@{MAIN_CONF_DIR}/authd-db-key
|
|
|
|
# DNS templates (read-only entries).
|
|
@{DNSMANAGERD_TEMPLATES}=@{MAIN_CONF_DIR}/templates/*.json
|
|
|
|
# Logs.
|
|
@{LOGS_DIR}=@{HOME}/tmp/logs
|
|
@{AUTHD_LOGS}=@{LOGS_DIR}/auth
|
|
@{DNSMANAGERD_LOGS}=@{LOGS_DIR}/dnsmanager
|
|
|
|
# Mailer for authd.
|
|
@{MAILER}=/{usr,usr/local}/bin/mailer
|
|
|
|
# IPC-related directory (see libipc(7)).
|
|
@{LIBIPC_DIR}=/tmp/.libipc-run/
|