mirror of
https://github.com/YunoHost-Apps/lychee_ynh.git
synced 2024-09-03 19:36:36 +02:00
65054e2816
* #39 * Update upgrade * Update manifest.json * Auto-update README * Update _common.sh * Update _common.sh * Cleaning up * Fix * Create DESCRIPTION.md * Auto-update README * Create updater.sh * Update updater.sh * Create updater.yml (#42) * Update upgrade * Update upgrade * Auto-update README * Update upgrade * Update upgrade * Apply example_ynh (#43) * Auto-update README * Apply example_ynh * Auto-update README * fix missing datadir * Fix missing phpversion * Update upgrade * Update check_process Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * 4.7.0 (#50) * 4.6.2 * Auto-update README * 4.7.0 * Auto-update README * Fix PHP * Update upgrade * Update restore * Update install * Update install * Update PHP to 8.1 * Update upgrade * Update install * Fix * Update ffprobe.patch * Update install * Update install * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Upgrade auto-updater (#58) * [autopatch] Upgrade auto-updater * Auto-update README --------- Co-authored-by: tituspijean <titus@pijean.ovh> * Update .env.example * Version 2 (#61) * v2 * fix * v2 * Update manifest.toml * Auto-update README * Fix * Auto-update README * 4.7.2 * Auto-update README * Update install * Update manifest.toml * Update _common.sh * Update install * Update install * Update .env.example * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Fix * Update install * Update install * Update .env.example * Update install * Update install * Update install * Update manifest.toml * Auto-update README * remove config panel * Update manifest.toml * Auto-update README * Update upgrade * Update manifest.toml * Auto-update README * Delete app.src * Update manifest.toml * Update manifest.toml * Auto-update README * add sudir (#68) * Update manifest.toml * Auto-update README * Update manifest.toml * Update install * Update manifest.toml * Auto-update README * Auto-update README * Update upgrade * Update manifest.toml * Auto-update README * Update manifest.toml * Auto-update README * Upgrade to v4.9.1 (#74) * Upgrade to v4.9.1 * Auto-update README * Update manifest.toml * Auto-update README * Update manifest.toml * Auto-update README * Update manifest.toml * Update manifest.toml * Auto-update README * Update manifest.toml * Auto-update README * fix * 4.11.0 * Auto-update README * Upgrade to v4.11.1 (#83) * Upgrade to v4.11.1 * Auto-update README * Auto-update README * Update manifest.toml * Update manifest.toml * Auto-update README * Upgrade to v4.13.0 (#86) * Upgrade to v4.13.0 * Auto-update README * no 32bit support * cleaning * Auto-update README * Update manifest.toml * Update manifest.toml * Auto-update README * Update manifest.toml * Auto-update README * Upgrade to v5.0.2 (#91) * Upgrade to v5.0.2 * Auto-update README * Update manifest.toml * Npm (#93) * fix * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: yalh76 <yalh@yahoo.com> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: tituspijean <titus@pijean.ovh>
94 lines
3 KiB
Text
94 lines
3 KiB
Text
APP_NAME=Lychee
|
|
APP_ENV=production
|
|
APP_KEY=
|
|
APP_DEBUG=false
|
|
APP_URL=https://__DOMAIN____PATH__
|
|
APP_FORCE_HTTPS=true
|
|
|
|
# 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__
|
|
DB_USERNAME=__DB_USER__
|
|
DB_PASSWORD=__DB_PWD__
|
|
DB_LOG_SQL=false
|
|
|
|
# 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)
|
|
TIMEZONE=__TIMEZONE__
|
|
|
|
# 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
|
|
|
|
# folders in which the files will be stored
|
|
LYCHEE_UPLOADS="__DATA_DIR__/uploads/"
|
|
LYCHEE_DIST="__INSTALL_DIR__/public/dist/"
|
|
# LYCHEE_SYM="/var/www/html/Lychee-Laravel/public/sym/"
|
|
# url to access those files
|
|
# LYCHEE_UPLOADS_URL="uploads/"
|
|
# LYCHEE_DIST_URL="dist/"
|
|
# LYCHEE_SYM_URL="sym/"
|
|
|
|
# Support for token based authentication used by API requests. Enabled by default.
|
|
ENABLE_TOKEN_AUTH=false
|
|
|
|
CACHE_DRIVER=file
|
|
SESSION_DRIVER=file
|
|
SESSION_LIFETIME=120
|
|
|
|
SECURITY_HEADER_HSTS_ENABLE=false
|
|
SESSION_SECURE_COOKIE=false
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PASSWORD=null
|
|
REDIS_PORT=6379
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=localhost
|
|
MAIL_PORT=25
|
|
MAIL_USERNAME=__APP__
|
|
MAIL_PASSWORD=__MAIL_PWD__
|
|
MAIL_ENCRYPTION=false
|
|
MAIL_FROM_NAME=lychee
|
|
MAIL_FROM_ADDRESS=lychee@__DOMAIN__
|
|
|
|
# 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
|
|
|
|
# Comma-separated list of class names of diagnostics checks that should be skipped.
|
|
#SKIP_DIAGNOSTICS_CHECKS=
|