]> BookStack Code Mirror - bookstack/blob - .env.example
move zip export into exportservice
[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 # Remove the hash below and set a URL if using BookStack behind
8 # a proxy, if using a third-party authentication option.
9 # This must be the root URL that you want to host BookStack on.
10 # All URL's in BookStack will be generated using this value.
11 #APP_URL=https://example.com
12
13 # Database details
14 DB_HOST=localhost
15 DB_DATABASE=database_database
16 DB_USERNAME=database_username
17 DB_PASSWORD=database_user_password
18
19 # Mail system to use
20 # Can be 'smtp' or 'sendmail'
21 MAIL_DRIVER=smtp
22
23 # Mail sender options
24 MAIL_FROM_NAME=BookStack
25 [email protected]
26
27 # SMTP mail options
28 MAIL_HOST=localhost
29 MAIL_PORT=1025
30 MAIL_USERNAME=null
31 MAIL_PASSWORD=null
32 MAIL_ENCRYPTION=null
33
34
35 # A full list of options can be found in the '.env.example.complete' file.