46 lines
932 B
Bash
46 lines
932 B
Bash
#
|
|
# Nginx configuration
|
|
#
|
|
NGINX_DEFAULT_CONF=./config/ohif/nginx/default.conf
|
|
NGINX_OHIF_CONF=./config/ohif/nginx/ohif.conf
|
|
|
|
#
|
|
# OHIF Viewer
|
|
#
|
|
OHIF_CONFIG=./config/ohif/ohif.js
|
|
OHIF_LOGO=./config/ohif/logo.png
|
|
|
|
#
|
|
# Orthanc core with plugins
|
|
#
|
|
ORTHANC_CONFIG=./config/orthanc
|
|
ORTHANC_OHIF=./config/ohif/ohif.js
|
|
ORTHANC_DB_MNT=./volumes/orthanc_db
|
|
ORTHANC_LOG=./volumes/orthanc_logs
|
|
|
|
#
|
|
# PostgreSQL database - default values should not be used in production
|
|
#
|
|
POSTGRES_DATA_MNT=./volumes/pg_data
|
|
PGDATA=/var/lib/postgresql/data
|
|
PGPASSWORD=AH&1p8Gzen8tlu7i
|
|
|
|
POSTGRES_DB=orthanc
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=blackfish
|
|
POSTGRES_PASSWORD=AH&1p8Gzen8tlu7i
|
|
POSTGRES_HOST=postgres
|
|
|
|
TZ="UTC"
|
|
PGTZ="UTC"
|
|
|
|
PGADMIN_MAIL=admin@blackfish.dev
|
|
PGADMIN_PASS=secret
|
|
PGADMIN_SERVER=False
|
|
PGADMIN_MASTER_PASS=False
|
|
PGADMIN_PORT=5050
|
|
|
|
ORTHANC_AET=BLACKFISH
|
|
ORTHANC_USERNAME=blackfish
|
|
ORTHANC_PASSWORD=letmein
|
|
ORTHANC_TOOLS_MNT=./volumes/orthanc_tools |