2019-01-22 20:52:22 +01: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
|
|
|
|
|
2019-01-22 20:52:22 +01:00
|
|
|
## Basic app configuration
|
2021-05-10 12:38:39 +02:00
|
|
|
COMPOSE_PROJECT_NAME=linkace
|
2019-01-22 20:52:22 +01:00
|
|
|
# The environment is usually 'production' but may be changed to 'local' for development
|
2018-08-22 20:57:11 +02:00
|
|
|
APP_ENV=local
|
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
|
2019-01-22 20:52:22 +01:00
|
|
|
# Enable the debug more if you are running into issues or while developing
|
2018-08-22 20:57:11 +02:00
|
|
|
APP_DEBUG=true
|
2020-01-24 11:34:04 +01: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.
|
2023-03-16 21:58:53 +01:00
|
|
|
# Set the database driver (mysql, pgsql, sqlsrv, sqlite)
|
2020-01-24 11:34:04 +01:00
|
|
|
DB_CONNECTION=mysql
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the host of your database here
|
2020-01-24 11:34:04 +01:00
|
|
|
DB_HOST=db
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the port of your database here
|
2020-01-24 11:34:04 +01:00
|
|
|
DB_PORT=3306
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set the database name here
|
2020-01-24 11:34:04 +01:00
|
|
|
DB_DATABASE=linkace
|
2022-03-24 00:04:10 +01:00
|
|
|
# Set both username and password of the user accessing the database
|
2020-01-24 11:34:04 +01:00
|
|
|
DB_USERNAME=linkace
|
2023-01-22 11:34:00 +01:00
|
|
|
# Wrap your password into quotes (") if it contains special characters
|
2022-03-24 00:04:10 +01:00
|
|
|
DB_PASSWORD=ChangeThisToASecurePassword!
|
2019-03-22 12:18:07 +01:00
|
|
|
|
2019-01-22 20:52:22 +01:00
|
|
|
## Redis cache configuration
|
|
|
|
# Set the Redis connection here if you want to use it
|
2019-07-02 13:37:28 +02:00
|
|
|
REDIS_HOST=redis
|
2022-03-25 00:10:58 +01:00
|
|
|
REDIS_PASSWORD=ChangeThisToASecurePassword!
|
2019-01-22 20:52:22 +01:00
|
|
|
REDIS_PORT=6379
|
|
|
|
|
|
|
|
## You probably do not want to change any values blow. Only continue if you know what you are doing.
|
|
|
|
# Configure various driver
|
|
|
|
SESSION_DRIVER=redis
|
|
|
|
LOG_CHANNEL=stack
|
|
|
|
BROADCAST_DRIVER=log
|
|
|
|
CACHE_DRIVER=redis
|
2019-07-16 19:55:57 +02:00
|
|
|
QUEUE_DRIVER=database
|