Initial upload - rename this file to ".env" and place it inside the folder containing your docker-compose.yml!
68 lines
No EOL
2.2 KiB
Text
68 lines
No EOL
2.2 KiB
Text
########################################################################
|
|
# SERVER
|
|
|
|
# the address under which your Vernissage server is accessible on the internet
|
|
VERNISSAGE_BASEADDRESS=https://vernissage.your.tld
|
|
|
|
# connection string to your postgres database
|
|
# in the format postgres://user:password@host:port/database
|
|
# if omited Vernissage creates a local sqlite database (not recommended)
|
|
VERNISSAGE_CONNECTIONSTRING=postgres://vernissage:vernissagedbpassword@vernissage-db:5432/vernissage
|
|
|
|
# api url to your S3 storage
|
|
# if omited Vernissage uses a local storage directory (not recommended)
|
|
VERNISSAGE_S3ADDRESS=s3.yourhost.tld
|
|
|
|
# region of your S3 bucket in Amazon AWS
|
|
# if set VERNISSAGE_S3ADDRESS is overwritten to connect to Amazon AWS
|
|
# VERNISSAGE_S3REGION=
|
|
|
|
# name of your S3 bucket
|
|
VERNISSAGE_S3BUCKET=vernissage
|
|
|
|
# accesskey and secret to your S3 storage
|
|
VERNISSAGE_S3ACCESSKEYID=YourS3AccessKey
|
|
VERNISSAGE_S3SECRETACCESSKEY=YourS3SecretAccessKey
|
|
|
|
# connection string to your redis server
|
|
# no need to change if the preconfigured redis from docker-compose.yml is used
|
|
VERNISSAGE_QUEUEURL=redis://vernissage-redis.internal:6379
|
|
|
|
# set to debug to increase the log output
|
|
#LOG_LEVEL=debug
|
|
|
|
|
|
########################################################################
|
|
# WEB
|
|
|
|
# adress to add to the Content-Security-Policy-headers to access files
|
|
# on your S3 storage. Normaly the same as VERNISSAGE_S3ADDRESS
|
|
VERNISSAGE_CSP_IMG=s3.yourhost.tld
|
|
|
|
|
|
########################################################################
|
|
# PROXY
|
|
|
|
# exposed port under which the proxy will be accessible. mostly used for
|
|
# a nginx reverse proxy configuration on the host. default: 8080
|
|
EXPOSED_PORT=8080
|
|
|
|
|
|
########################################################################
|
|
# PUSH
|
|
|
|
# random, password like string
|
|
# must be the same as in "WebPush service secret key" from /settings
|
|
VPUSH_KEY=YourVPushKey
|
|
|
|
|
|
########################################################################
|
|
# GLOBAL
|
|
|
|
# tag ("version") of docker containers to use. defaults to "latest"
|
|
# `docker compose pull` after changing this value
|
|
DOCKER_TAG=latest
|
|
|
|
# subnet for internaly used IPv6 adresses
|
|
# defaults to 2001:db8::/64
|
|
#IPV6_SUBNET=2001:db8::/64 |