2020-08-28 16:08:16 +02:00
|
|
|
## LINKACE CONFIGURATION
|
|
|
|
|
2022-11-17 13:56:09 +01:00
|
|
|
## Please note that the LinkAce Docker image will be renamed with the release of LinkAce 2!
|
|
|
|
## Read more: https://github.com/Kovah/LinkAce/issues/502
|
|
|
|
|
2020-08-28 16:08:16 +02:00
|
|
|
## Basic app configuration
|
2021-05-10 12:38:39 +02:00
|
|
|
COMPOSE_PROJECT_NAME=linkace
|
2022-11-17 13:38:25 +01:00
|
|
|
# The app key is generated later, please leave it like that
|
2022-03-24 00:04:10 +01:00
|
|
|
APP_KEY=someRandomStringWith32Characters
|
2020-08-28 16:08:16 +02:00
|
|
|
|
|
|
|
## Configuration of the database connection
|
2022-03-24 00:04:10 +01:00
|
|
|
## Attention: Those settings are configured during the web setup, please do not modify them now.
|
|
|
|
# Set the database driver (mysql, pgsql, sqlsrv)
|
2020-08-28 16:08:16 +02:00
|
|
|
DB_CONNECTION=mysql
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the host of your database here
|
2020-08-28 16:08:16 +02:00
|
|
|
DB_HOST=db
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the port of your database here
|
2020-08-28 16:08:16 +02:00
|
|
|
DB_PORT=3306
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the database name here
|
2020-08-28 16:08:16 +02:00
|
|
|
DB_DATABASE=linkace
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set both username and password of the user accessing the database
|
2020-08-28 16:08:16 +02:00
|
|
|
DB_USERNAME=linkace
|
|
|
|
DB_PASSWORD=ChangeThisToASecurePassword!
|
|
|
|
|
|
|
|
## Redis cache configuration
|
|
|
|
# Set the Redis connection here if you want to use it
|
|
|
|
REDIS_HOST=redis
|
2022-03-25 00:10:58 +01:00
|
|
|
REDIS_PASSWORD=ChangeThisToASecurePassword!
|
2020-08-28 16:08:16 +02:00
|
|
|
REDIS_PORT=6379
|