-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
66 lines (53 loc) · 1.93 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#--------------------------------------------------------------------
# Example Environment Configuration file
#
# This file can be used as a starting point for your own
# custom .env files, and contains most of the possible settings
# available in a default install.
#
# By default, all of the settings are commented out. If you want
# to override the setting, you must un-comment it by removing the '#'
# at the beginning of the line.
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# ENVIRONMENT
#--------------------------------------------------------------------
ENVIRONMENT = auto
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
# app.name = ''
# app.baseURL = ''
# app.sessionCookieName = '_session'
# app.sessionSavePath = NULL
# app.sessionMatchIP = false
# app.sessionTimeToUpdate = 300
# app.sessionRegenerateDestroy = false
# app.cookie.prefix = ''
# app.cookie.domain = ''
# app.cookie.path = '/'
# app.cookie.secure = false
# app.cookie.HTTPOnly = false
# app.CSRF.protection = false
# app.CSRF.tokenName = 'csrf_test_name'
# app.CSRF.cookieName = 'csrf_cookie_name'
# app.CSRF.expire = 7200
# app.CSRF.regenerate = true
# app.CSRF.excludeURIs = []
# app.CSPEnabled = false
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
# db.connection = default
# db.default.hostname = localhost
# db.default.database = test
# db.default.username = root
# db.default.password = root
# db.default.driver = pdomysql
#--------------------------------------------------------------------
# Authentication
#--------------------------------------------------------------------
# jwt.key = JWT-SECRET-KEY
# jwt.time = 5
# jwt.distinct = false
# jwt.algo = HS256