]> BookStack Code Mirror - bookstack/blob - .env.example
Fixes issue with code not wrapping on revision page.
[bookstack] / .env.example
1 # Environment
2 APP_ENV=production
3 APP_DEBUG=false
4 APP_KEY=SomeRandomString
5
6 # The below url has to be set if using social auth options
7 # or if you are not using BookStack at the root path of your domain.
8 # APP_URL=http://bookstack.dev
9
10 # Database details
11 DB_HOST=localhost
12 DB_DATABASE=database_database
13 DB_USERNAME=database_username
14 DB_PASSWORD=database_user_password
15
16 # Cache and session
17 CACHE_DRIVER=file
18 SESSION_DRIVER=file
19 # If using Memcached, comment the above and uncomment these
20 #CACHE_DRIVER=memcached
21 #SESSION_DRIVER=memcached
22 QUEUE_DRIVER=sync
23 # A different prefix is useful when multiple BookStack instances use the same caching server
24 CACHE_PREFIX=bookstack
25
26 # Memcached settings
27 # If using a UNIX socket path for the host, set the port to 0
28 # This follows the following format: HOST:PORT:WEIGHT
29 # For multiple servers separate with a comma
30 MEMCACHED_SERVERS=127.0.0.1:11211:100
31
32 # Storage
33 STORAGE_TYPE=local
34 # Amazon S3 Config
35 STORAGE_S3_KEY=false
36 STORAGE_S3_SECRET=false
37 STORAGE_S3_REGION=false
38 STORAGE_S3_BUCKET=false
39 # Storage URL
40 # Used to prefix image urls for when using custom domains/cdns
41 STORAGE_URL=false
42
43 # General auth
44 AUTH_METHOD=standard
45
46 # Social Authentication information. Defaults as off.
47 GITHUB_APP_ID=false
48 GITHUB_APP_SECRET=false
49 GOOGLE_APP_ID=false
50 GOOGLE_APP_SECRET=false
51 OKTA_BASE_URL=false
52 OKTA_APP_ID=false
53 OKTA_APP_SECRET=false
54 TWITCH_APP_ID=false
55 TWITCH_APP_SECRET=false
56 GITLAB_APP_ID=false
57 GITLAB_APP_SECRET=false
58 GITLAB_BASE_URI=false
59
60 # External services such as Gravatar and Draw.IO
61 DISABLE_EXTERNAL_SERVICES=false
62
63 # LDAP Settings
64 LDAP_SERVER=false
65 LDAP_BASE_DN=false
66 LDAP_DN=false
67 LDAP_PASS=false
68 LDAP_USER_FILTER=false
69 LDAP_VERSION=false
70
71 # Mail settings
72 MAIL_DRIVER=smtp
73 MAIL_HOST=localhost
74 MAIL_PORT=1025
75 MAIL_USERNAME=null
76 MAIL_PASSWORD=null
77 MAIL_ENCRYPTION=null
78 MAIL_FROM=null
79 MAIL_FROM_NAME=null
Morty Proxy This is a proxified and sanitized view of the page, visit original site.