2020-11-06 21:41:02 +01:00
|
|
|
APP_NAME=Lychee
|
|
|
|
APP_ENV=production
|
|
|
|
APP_KEY=
|
|
|
|
APP_DEBUG=false
|
2023-03-06 22:05:26 +01:00
|
|
|
APP_URL=https://__DOMAIN____PATH__
|
|
|
|
APP_FORCE_HTTPS=true
|
2020-11-06 21:41:02 +01:00
|
|
|
|
|
|
|
# enable or disable debug bar. By default it is disabled.
|
|
|
|
DEBUGBAR_ENABLED=false
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# IMPORTANT: To migrate from Lychee v3 you *MUST* use the same MySQL/MariaDB #
|
|
|
|
# server as v3. #
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Table prefix (e.g. lychee_) of a Lychee v3 instance for migration
|
|
|
|
DB_OLD_LYCHEE_PREFIX=
|
|
|
|
|
|
|
|
# DB_CONNECTION can be sqlite, mysql or pgsql. For sqlite the other entries are
|
|
|
|
# not required, but an existing sqlite3 database may be specified if desired. In
|
|
|
|
# this case, please use an absolute path. DB_DATABASE may be omitted but should
|
|
|
|
# *not* be left blank.
|
|
|
|
DB_CONNECTION=mysql
|
|
|
|
DB_HOST=127.0.0.1
|
|
|
|
DB_PORT=3306
|
|
|
|
DB_DATABASE=__DB_NAME__
|
2022-08-09 10:57:57 +02:00
|
|
|
DB_USERNAME=__DB_USER__
|
2021-06-11 14:01:57 +02:00
|
|
|
DB_PASSWORD=__DB_PWD__
|
2020-11-06 21:41:02 +01:00
|
|
|
DB_LOG_SQL=false
|
|
|
|
|
2023-03-08 20:36:41 +01:00
|
|
|
# List foreign keys in diagnostic page
|
|
|
|
#DB_LIST_FOREIGN_KEYS=true
|
|
|
|
|
|
|
|
# Application timezone. If not specified, the server's default timezone is used.
|
|
|
|
# Requires a named timezone identifier.
|
|
|
|
# See https://www.php.net/manual/en/timezones.php for the list of supported timezones.
|
|
|
|
# Don't use a timezone offset (like +01:00) or a timezone abbreviation (like CEST)
|
2023-03-08 18:21:13 +01:00
|
|
|
TIMEZONE=__TIMEZONE__
|
2020-11-06 21:41:02 +01:00
|
|
|
|
2023-03-08 20:36:41 +01:00
|
|
|
# Visibility of directories and (media) files in LYCHEE_UPLOADS
|
|
|
|
# Possible values are:
|
|
|
|
#
|
|
|
|
# - private: world group has neither read nor write access
|
|
|
|
# - public: world group has read access but no write access (the default)
|
|
|
|
# - world: world group has read and write access
|
|
|
|
#
|
|
|
|
# The default should suffice for most installations.
|
|
|
|
# For improved security, change this setting to "private".
|
|
|
|
# Some rare setups may require directories and files to be world writeable.
|
|
|
|
# In this case, use "world" here.
|
|
|
|
# USE WITH PRECAUTIONS: world writeable files and folders may be a SECURITY RISK.
|
|
|
|
LYCHEE_IMAGE_VISIBILITY=public
|
|
|
|
|
2020-11-06 21:41:02 +01:00
|
|
|
# folders in which the files will be stored
|
2023-03-06 13:22:51 +01:00
|
|
|
LYCHEE_UPLOADS="__DATA_DIR__/uploads/"
|
2023-03-08 20:36:41 +01:00
|
|
|
LYCHEE_DIST="__INSTALL_DIR__/public/dist/"
|
|
|
|
# LYCHEE_SYM="/var/www/html/Lychee-Laravel/public/sym/"
|
2020-11-06 21:41:02 +01:00
|
|
|
# url to access those files
|
|
|
|
# LYCHEE_UPLOADS_URL="uploads/"
|
2023-03-08 20:36:41 +01:00
|
|
|
# LYCHEE_DIST_URL="dist/"
|
|
|
|
# LYCHEE_SYM_URL="sym/"
|
|
|
|
|
|
|
|
# Support for token based authentication used by API requests. Enabled by default.
|
|
|
|
ENABLE_TOKEN_AUTH=false
|
2020-11-06 21:41:02 +01:00
|
|
|
|
|
|
|
CACHE_DRIVER=file
|
|
|
|
SESSION_DRIVER=file
|
|
|
|
SESSION_LIFETIME=120
|
|
|
|
|
|
|
|
SECURITY_HEADER_HSTS_ENABLE=false
|
2023-03-08 20:36:41 +01:00
|
|
|
SESSION_SECURE_COOKIE=false
|
2020-11-06 21:41:02 +01:00
|
|
|
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
|
|
REDIS_PASSWORD=null
|
|
|
|
REDIS_PORT=6379
|
|
|
|
|
|
|
|
MAIL_DRIVER=smtp
|
|
|
|
MAIL_HOST=
|
|
|
|
MAIL_PORT=
|
|
|
|
MAIL_USERNAME=
|
|
|
|
MAIL_PASSWORD=
|
|
|
|
MAIL_ENCRYPTION=
|
2023-03-08 20:36:41 +01:00
|
|
|
MAIL_FROM_NAME=
|
|
|
|
MAIL_FROM_ADDRESS=
|
2020-11-06 21:41:02 +01:00
|
|
|
|
2023-03-08 20:36:41 +01:00
|
|
|
# The trusted proxies if Lychee is behind a reverse proxy
|
|
|
|
# Accepted values:
|
|
|
|
# - `null`: no proxy
|
|
|
|
# - `*`: any proxy
|
|
|
|
# - <ip address>[,<ip address>]: a comma-seperated list of IP addresses
|
|
|
|
TRUSTED_PROXIES=null
|
2020-11-06 21:41:02 +01:00
|
|
|
|
2023-03-08 20:36:41 +01:00
|
|
|
# Comma-separated list of class names of diagnostics checks that should be skipped.
|
|
|
|
#SKIP_DIAGNOSTICS_CHECKS=
|