From 8ff17f8e639fbc192cbfb280685934f3fc136077 Mon Sep 17 00:00:00 2001 From: oliver Date: Tue, 15 Apr 2025 22:44:13 +0200 Subject: [PATCH] =?UTF-8?q?vernissage/env=5Fvernissage.txt=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Initial upload - rename this file to ".env" and place it inside the folder containing your docker-compose.yml! --- vernissage/env_vernissage.txt | 68 +++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 vernissage/env_vernissage.txt diff --git a/vernissage/env_vernissage.txt b/vernissage/env_vernissage.txt new file mode 100644 index 0000000..e5bab52 --- /dev/null +++ b/vernissage/env_vernissage.txt @@ -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 \ No newline at end of file