1
0
Fork 0
This commit is contained in:
Christian Winther 2024-01-05 16:27:11 +00:00
parent 10674ac523
commit 215b49ea3d
3 changed files with 14 additions and 7 deletions

View File

@ -113,7 +113,7 @@ APP_TIMEZONE="${TZ}"
# Defaults to "en". # Defaults to "en".
# #
# See: https://docs.pixelfed.org/technical-documentation/config/#app_fallback_locale # See: https://docs.pixelfed.org/technical-documentation/config/#app_fallback_locale
APP_FALLBACK_LOCALE="en" #APP_FALLBACK_LOCALE="en"
# See: https://docs.pixelfed.org/technical-documentation/config/#limit_account_size # See: https://docs.pixelfed.org/technical-documentation/config/#limit_account_size
#LIMIT_ACCOUNT_SIZE="true" #LIMIT_ACCOUNT_SIZE="true"
@ -368,7 +368,7 @@ MAIL_FROM_NAME="Pixelfed @ ${APP_DOMAIN}"
# Defaults to "localhost". # Defaults to "localhost".
# #
# See: https://docs.pixelfed.org/technical-documentation/config/#redis_host # See: https://docs.pixelfed.org/technical-documentation/config/#redis_host
REDIS_HOST="cache" REDIS_HOST="redis"
# Defaults to null. # Defaults to null.
# #

View File

@ -3,11 +3,18 @@
## Prerequisites ## Prerequisites
* One of the `docker-compose.yml` files in this directory * One of the `docker-compose.yml` files in this directory
* A copy of the `example.env` file * A copy of the `example.env` file named `.env` next to `docker-compose.yml`
In order to set configuration, please use a .env file in your compose project directory (the same directory as your docker-compose.yml), and set database options, application Your folder should look like this
name, key, and other settings there.
A list of available settings is available in .env.example ```plain
.
├── .env
└── docker-compose.yml
```
The services should scale properly across a swarm cluster if the volumes are properly shared between cluster members. ## Modifying your settings (`.env` file)
* `APP_NAME`
* `APP_DOMAIN`
* `DB_PASSWORD`