mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-02 01:29:42 -06:00
28 lines
793 B
Bash
28 lines
793 B
Bash
## Base path of container mounts
|
|
# DATA_ROOT=./data
|
|
|
|
## Location of config file (relative to ${DATA_ROOT})
|
|
# CONFIG_LOCATION=config.yml
|
|
|
|
## Location of uploaded content (relative to ${DATA_ROOT})
|
|
# STORAGE_LOCATION=storage
|
|
|
|
## Location of postgres data (relative to ${DATA_ROOT})
|
|
# PG_DATA_LOCATION=postgres
|
|
|
|
|
|
## Database config
|
|
# PHYLUM_DB_NAME=phylum
|
|
# PHYLUM_DB_USER=phylum
|
|
PHYLUM_DB_PASSWORD=phylum
|
|
|
|
|
|
# For a full list of configuration parameters see the config.defaults.yml at
|
|
# https://codeberg.org/shroff/phylum/.
|
|
#
|
|
# You can also use PHYLUM_* environment variables substituting '_' for '.',
|
|
# i.e. PHYLUM_SERVER_PORT to override server.port, but it is recommended to
|
|
# do that using the config.yml file.
|
|
#
|
|
# Please note that environment variables take precedence over the config file.
|