vernissage/docker_vernissage_full.yaml hinzugefügt
This commit is contained in:
parent
905d2dfaf3
commit
8700e484f8
1 changed files with 68 additions and 0 deletions
68
vernissage/docker_vernissage_full.yaml
Normal file
68
vernissage/docker_vernissage_full.yaml
Normal file
|
@ -0,0 +1,68 @@
|
|||
########################################################################
|
||||
# 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
|
Loading…
Add table
Reference in a new issue