]> BookStack Code Mirror - bookstack/blob - .env.example
Updated ldap so extension not required in testing
[bookstack] / .env.example
1 # Environment
2 APP_ENV=production
3 APP_DEBUG=false
4 APP_KEY=SomeRandomString
5
6 # Database details
7 DB_HOST=localhost
8 DB_DATABASE=database_database
9 DB_USERNAME=database_username
10 DB_PASSWORD=database_user_password
11
12 # Cache and session
13 CACHE_DRIVER=file
14 SESSION_DRIVER=file
15 # If using Memcached, comment the above and uncomment these
16 #CACHE_DRIVER=memcached
17 #SESSION_DRIVER=memcached
18 QUEUE_DRIVER=sync
19
20 # Memcached settings
21 # If using a UNIX socket path for the host, set the port to 0
22 # This follows the following format: HOST:PORT:WEIGHT
23 # For multiple servers separate with a comma
24 MEMCACHED_SERVERS=127.0.0.1:11211:100
25
26 # Storage
27 STORAGE_TYPE=local
28 # Amazon S3 Config
29 STORAGE_S3_KEY=false
30 STORAGE_S3_SECRET=false
31 STORAGE_S3_REGION=false
32 STORAGE_S3_BUCKET=false
33 # Storage URL
34 # Used to prefix image urls for when using custom domains/cdns
35 STORAGE_URL=false
36
37 # General auth
38 AUTH_METHOD=standard
39
40 # Social Authentication information. Defaults as off.
41 GITHUB_APP_ID=false
42 GITHUB_APP_SECRET=false
43 GOOGLE_APP_ID=false
44 GOOGLE_APP_SECRET=false
45 # URL used for social login redirects, NO TRAILING SLASH
46 APP_URL=http://bookstack.dev
47
48 # External services such as Gravatar
49 DISABLE_EXTERNAL_SERVICES=false
50
51 # LDAP Settings
52 LDAP_SERVER=false
53 LDAP_BASE_DN=false
54 LDAP_DN=false
55 LDAP_PASS=false
56 LDAP_USER_FILTER=false
57 LDAP_VERSION=false
58
59 # Mail settings
60 MAIL_DRIVER=smtp
61 MAIL_HOST=localhost
62 MAIL_PORT=1025
63 MAIL_USERNAME=null
64 MAIL_PASSWORD=null
65 MAIL_ENCRYPTION=null