-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
167 lines (134 loc) · 5.4 KB
/
.env.example
File metadata and controls
167 lines (134 loc) · 5.4 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#--------------------------------------------------------------------
# Webby 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 or most of the settings are commented out. If you want
# to override a setting, you must un-comment it by removing the '#'
# at the beginning of the line.
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# PHP CLI VERSION
# This will help set a php version to be used
# By default every php environment is set
# to recognize the "php" command
#--------------------------------------------------------------------
php.cli.version = php
#--------------------------------------------------------------------
# APP ENVIRONMENT
# The values you can assign are: (development, testing and production)
# By default when it is empty it is set automatically as production
#--------------------------------------------------------------------
app.env = development
#--------------------------------------------------------------------
# APP CLASSMAP
#--------------------------------------------------------------------
app.classmap.file = 'autoload_classmap.php';
#--------------------------------------------------------------------
# APP MAINTENANCE MODE
#--------------------------------------------------------------------
app.mode.on = true
app.maintenance.view = maintenance.php
app.maintenance.info = tobeasecretagent
# Maintenance bypass options
app.maintenance.bypass.key = maintenancebypasskey
app.maintenance.bypass.ips = 127.0.1.1,your.example.ip.address
app.maintenance.bypass.admin = false
app.maintenance.bypass.dev = false
app.maintenance.retry.after = 3600
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
# app.name = ''
# app.email = 'default@mail.com'
# app.baseURL = ''
# app.timezone = ''
#--------------------------------------------------------------------
# APP ENCRYPTION
#--------------------------------------------------------------------
# app.encryptionKey =
#--------------------------------------------------------------------
# APP SESSION
#--------------------------------------------------------------------
# app.sessionDriver = 'files'
# app.sessionSavePath = ''
# app.sessionCookieName = ''
# app.sessionSamesite = Lax
# app.sessionExpiration = 7200
# app.sessionMatchIP = ''
# app.sessionTimeToUpdate = 300
# app.sessionRegenerateDestroy = ''
#--------------------------------------------------------------------
# APP COOKIE
#--------------------------------------------------------------------
# app.cookiePrefix = ''
# app.cookieDomain = ''
# app.cookiePath = '/'
# app.cookieSecure = ''
# app.cookieHTTPOnly = ''
# app.cookieSameSite = Lax
#--------------------------------------------------------------------
# APP SECURITY
#--------------------------------------------------------------------
# app.CSRFProtection = true
# app.CSRFTokenName = 'csrf_token_name'
# app.CSRFCookieName = 'csrf_cookie_name'
# app.CSRFExpire = 7200
# app.CSRFRegenerate = ''
# app.CSRFExcludeURIs = []
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
# database.json.path = writable/jsondb/storage
# database.default.dsn = mysqli://username:password@127.0.0.1:3306/database_name
# database.default.hostname = localhost:3306
# database.default.database = dbname
# database.default.authDB = dbname
# database.default.username = username
# database.default.password = password
# database.default.DBDriver = mysqli
# database.test.dsn = mysqli://username:password@127.0.0.1:3306/database_name
# database.test.hostname = localhost:3306
# database.test.database = dbname
# database.test.authDB = dbname
# database.test.username = username
# database.test.password = password
# database.test.DBDriver = mysqli
# database.pgsql.dsn = pgsql:host=127.0.0.1;dbname=dbname;password=password;
# database.pgsql.hostname = pgsql:host=127.0.0.1;dbname=dbname
# database.pgsql.database = dbname
# database.pgsql.username = username
# database.pgsql.password = password
# database.pgsql.DBDriver = pdo
# database.pgsql.port = 5432
#--------------------------------------------------------------------
# HONEYPOT
#--------------------------------------------------------------------
# honeypot.enabled = false
#--------------------------------------------------------------------
# LOG
#--------------------------------------------------------------------
# log.level = 4
# log.dateformat = 'Y-m-d H:i:s'
#--------------------------------------------------------------------
# MAIL CONFIGURATION
#--------------------------------------------------------------------
# ----- Available configurations are: env, database, mailtrap. ------
# mail.config = "env"
# mail.protocol = smtp
# mail.debug.mode = 0
# mail.smtp.auth = true
# mail.smtp.host =
# mail.server.user =
# mail.server.pass =
# mail.smtp.security = tls
# mail.smtp.port =
#
# mail.email.from = Admin
# mail.support.email = "${app.email}"
# mail.support.team = Team Name
#--------------------------------------------------------------------
# YOUR CUSTOM CONFIGURATIONS
#--------------------------------------------------------------------