1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 21:28:30 +01:00
LinkAce/.env.docker

42 lines
723 B
Docker
Raw Normal View History

2019-01-10 22:50:09 +01:00
# Basic app configuration
APP_NAME=LinkAce
2018-08-22 20:57:11 +02:00
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
2019-01-10 22:50:09 +01:00
# System settings
PAGE_TITLE=''
GUEST_ACCESS=false
2018-08-22 20:57:11 +02:00
2019-01-10 22:50:09 +01:00
# Configuration of the database connection
2018-08-22 20:57:11 +02:00
DB_CONNECTION=mysql
DB_HOST=linkace-db
DB_PORT=3306
DB_DATABASE=linkace
DB_USERNAME=linkace
DB_PASSWORD=secret
2019-01-10 22:50:09 +01:00
# Configure user session details
2018-08-22 20:57:11 +02:00
SESSION_DRIVER=redis
SESSION_LIFETIME=120
2019-01-10 22:50:09 +01:00
# Configure various driver
LOG_CHANNEL=stack
BROADCAST_DRIVER=log
CACHE_DRIVER=redis
2018-08-22 20:57:11 +02:00
QUEUE_DRIVER=sync
2019-01-10 22:50:09 +01:00
# Redis cache configuration
2018-08-22 20:57:11 +02:00
REDIS_HOST=linkace-redis
REDIS_PASSWORD=null
REDIS_PORT=6379
2019-01-10 22:50:09 +01:00
# Mail configuration
2018-08-22 20:57:11 +02:00
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null