]> BookStack Code Mirror - bookstack/blob - .env.example
64b86041ef71b8bac85d29d3b5f17b6a4c5ba363
[bookstack] / .env.example
1 # Application key
2 # Used for encryption where needed.
3 # Run `php artisan key:generate` to generate a valid key.
4 APP_KEY=SomeRandomString
5
6 # Application URL
7 # This must be the root URL that you want to host BookStack on.
8 # All URL's in BookStack will be generated using this value.
9 APP_URL=https://example.com
10
11 # Database details
12 DB_HOST=localhost
13 DB_DATABASE=database_database
14 DB_USERNAME=database_username
15 DB_PASSWORD=database_user_password
16
17 # Mail system to use
18 # Can be 'smtp', 'mail' or 'sendmail'
19 MAIL_DRIVER=smtp
20
21 # SMTP mail options
22 MAIL_HOST=localhost
23 MAIL_PORT=1025
24 MAIL_USERNAME=null
25 MAIL_PASSWORD=null
26 MAIL_ENCRYPTION=null
27
28
29 # A full list of options can be found in the '.env.example.complete' file.