mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-04 13:35:19 +00:00
16 lines
821 B
Text
16 lines
821 B
Text
# Configure your database connection and set the correct server version:
|
|
# for MySQL "serverVersion=5.7" and for MariaDB "serverVersion=mariadb-10.5.8"
|
|
DATABASE_URL=mysql://user:password@127.0.0.1:3306/database?charset=utf8&serverVersion=5.7
|
|
# Email will be sent with this address as sender
|
|
MAILER_FROM=kimai@example.com
|
|
# Email connection (disabled by default) more info at https://www.kimai.org/documentation/emails.html
|
|
MAILER_URL=null://null
|
|
# do not change, unless you are developing for Kimai
|
|
APP_ENV=prod
|
|
# should be changed to a unique character sequence
|
|
APP_SECRET=change_this_to_something_unique
|
|
# unlikely, that you need to change this one
|
|
CORS_ALLOW_ORIGIN=^https?://localhost(:[0-9]+)?$
|
|
# Running behind reverse proxies? Use those:
|
|
# TRUSTED_PROXIES=127.0.0.1,127.0.0.2
|
|
# TRUSTED_HOSTS=localhost,example.com
|