-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
167 lines (135 loc) · 5.59 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
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 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 MAINTENANCE MODE
#--------------------------------------------------------------------
app.mode.on = true
app.maintenance.view = maintenance.php
#--------------------------------------------------------------------
# APP OUTSIDE ENVIRONMENT
# The values you can assign is: (true and false)
# By default when it is empty it is set automatically as false
#--------------------------------------------------------------------
app.use.outside = true
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
# app.name = ''
# app.email = '[email protected]'
# 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:[email protected]: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:[email protected]: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.hidden = 'true'
# honeypot.name = 'honeypot'
# honeypot.style='<style> .honeypot { display:none } </style>'
# honeypot.template = '<input type="{hidden}" name="{name}" value="" tabindex="-1" autocomplete="off"/>'
# honeypot.time = 5
# honeypot.timename = 'honeytime'
# honeypot.timefield = '<input type="{hidden}" name="{timename}" value="{honeytime}" tabindex="-1" autocomplete="off"/>'
# honeypot.container = '<div style="display:none">{template} {honeyfield}</div>'
#--------------------------------------------------------------------
# LOG
#--------------------------------------------------------------------
# log.level = 3
# log.dateformat = 'Y-m-d H:i:s'
#--------------------------------------------------------------------
# MAIL CONFIGURATION
#--------------------------------------------------------------------
# ----- Available configurations are: env, database, mailtrap. ------
# mailer.config = "env"
# mailer.debug.mode = 0
# smtp.auth = true
# smtp.host =
# mail.server.user =
# mail.server.pass =
# smtp.security = tls
# smtp.port =
#
# email.from = Admin
# support.email = "${app.email}"
# support.team = Team Name
#--------------------------------------------------------------------
# YOUR CUSTOM CONFIGURATIONS
#--------------------------------------------------------------------