mirror of
https://github.com/YunoHost-Apps/bookstack_ynh.git
synced 2024-09-03 18:16:02 +02:00
Update .env.example
This commit is contained in:
parent
a3460aa59d
commit
50a97f2d2a
1 changed files with 12 additions and 1 deletions
|
@ -16,9 +16,17 @@ APP_ENV=production
|
||||||
APP_DEBUG=false
|
APP_DEBUG=false
|
||||||
|
|
||||||
# Application key
|
# Application key
|
||||||
|
# Used for encryption where needed.
|
||||||
|
# Run `php artisan key:generate` to generate a valid key.
|
||||||
APP_KEY=SomeRandomString
|
APP_KEY=SomeRandomString
|
||||||
|
|
||||||
# Application URL
|
# Application URL
|
||||||
|
# This must be the root URL that you want to host BookStack on.
|
||||||
|
# All URLs in BookStack will be generated using this value
|
||||||
|
# to ensure URLs generated are consistent and secure.
|
||||||
|
# If you change this in the future you may need to run a command
|
||||||
|
# to update stored URLs in the database. Command example:
|
||||||
|
# php artisan bookstack:update-url https://old.example.com https://new.example.com
|
||||||
APP_URL=__APP_URL_DOMAIN__
|
APP_URL=__APP_URL_DOMAIN__
|
||||||
|
|
||||||
# Application default language
|
# Application default language
|
||||||
|
@ -41,6 +49,7 @@ DB_PASSWORD=__DB_PWD__
|
||||||
FILE_UPLOAD_SIZE_LIMIT=100
|
FILE_UPLOAD_SIZE_LIMIT=100
|
||||||
|
|
||||||
# Mail system to use
|
# Mail system to use
|
||||||
|
# Can be 'smtp' or 'sendmail'
|
||||||
MAIL_DRIVER=smtp
|
MAIL_DRIVER=smtp
|
||||||
|
|
||||||
# Mail sender details
|
# Mail sender details
|
||||||
|
@ -50,8 +59,10 @@ MAIL_FROM=bookstack@__DOMAIN__
|
||||||
# SMTP mail options
|
# SMTP mail options
|
||||||
# These settings can be checked using the "Send a Test Email"
|
# These settings can be checked using the "Send a Test Email"
|
||||||
# feature found in the "Settings > Maintenance" area of the system.
|
# feature found in the "Settings > Maintenance" area of the system.
|
||||||
|
# For more detailed documentation on mail options, refer to:
|
||||||
|
# https://www.bookstackapp.com/docs/admin/email-webhooks/#email-configuration
|
||||||
MAIL_HOST=localhost
|
MAIL_HOST=localhost
|
||||||
MAIL_PORT=25
|
MAIL_PORT=587
|
||||||
MAIL_USERNAME=__APP__
|
MAIL_USERNAME=__APP__
|
||||||
MAIL_PASSWORD=__MAIL_PWD__
|
MAIL_PASSWORD=__MAIL_PWD__
|
||||||
MAIL_ENCRYPTION=null
|
MAIL_ENCRYPTION=null
|
||||||
|
|
Loading…
Add table
Reference in a new issue