36 lines
921 B
Bash
36 lines
921 B
Bash
# Application key
|
|
# Used for encryption where needed.
|
|
# Run `php artisan key:generate` to generate a valid key.
|
|
APP_KEY=base64:BLI8XkuQNw2qwHgk/mhcSwwnl3ZQ2T1k2hOIdMaX9TA=
|
|
|
|
# Application URL
|
|
# Remove the hash below and set a URL if using BookStack behind
|
|
# a proxy, if using a third-party authentication option.
|
|
# This must be the root URL that you want to host BookStack on.
|
|
# All URL's in BookStack will be generated using this value.
|
|
APP_URL=https://book.franv.site
|
|
|
|
# Database details
|
|
DB_HOST=bookstack_db
|
|
DB_DATABASE=bookstackapp
|
|
DB_USERNAME=bookstack
|
|
DB_PASSWORD=chengli197
|
|
|
|
# Mail system to use
|
|
# Can be 'smtp' or 'sendmail'
|
|
MAIL_DRIVER=smtp
|
|
|
|
# Mail sender options
|
|
MAIL_FROM_NAME=BookStack
|
|
MAIL_FROM=bookstack@example.com
|
|
|
|
# SMTP mail options
|
|
MAIL_HOST=localhost
|
|
MAIL_PORT=1025
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
|
|
|
|
# A full list of options can be found in the '.env.example.complete' file.
|