1+ # --------------------------------------------------------------------
2+ # Example Environment Configuration file
3+ #
4+ # This file can be used as a starting point for your own
5+ # custom .env files, and contains most of the possible settings
6+ # available in a default install.
7+ #
8+ # By default, all of the settings are commented out. If you want
9+ # to override the setting, you must un-comment it by removing the '#'
10+ # at the beginning of the line.
11+ # --------------------------------------------------------------------
12+
13+ # --------------------------------------------------------------------
14+ # ENVIRONMENT
15+ # --------------------------------------------------------------------
16+
17+ # CI_ENVIRONMENT = development
18+
19+ # --------------------------------------------------------------------
20+ # APP
21+ # --------------------------------------------------------------------
22+
23+ app.baseURL = ' http://localhost:8080/'
24+ # app.forceGlobalSecureRequests = false
25+
26+ # app.sessionDriver = 'CodeIgniter\Session\Handlers\FileHandler'
27+ # app.sessionCookieName = 'ci_session'
28+ # app.sessionSavePath = NULL
29+ # app.sessionMatchIP = false
30+ # app.sessionTimeToUpdate = 300
31+ # app.sessionRegenerateDestroy = false
32+
33+ # app.cookiePrefix = ''
34+ # app.cookieDomain = ''
35+ # app.cookiePath = '/'
36+ # app.cookieSecure = false
37+ # app.cookieHTTPOnly = false
38+
39+ # app.CSRFProtection = false
40+ # app.CSRFTokenName = 'csrf_test_name'
41+ # app.CSRFCookieName = 'csrf_cookie_name'
42+ # app.CSRFExpire = 7200
43+ # app.CSRFRegenerate = true
44+ # app.CSRFExcludeURIs = []
45+
46+ # app.CSPEnabled = false
47+
48+ # --------------------------------------------------------------------
49+ # DATABASE
50+ # --------------------------------------------------------------------
51+
52+ # database.default.hostname = localhost
53+ # database.default.database = ci4
54+ # database.default.username = root
55+ # database.default.password = root
56+ # database.default.DBDriver = MySQLi
57+
58+ # database.tests.hostname = localhost
59+ # database.tests.database = ci4
60+ # database.tests.username = root
61+ # database.tests.password = root
62+ # database.tests.DBDriver = MySQLi
63+
64+ # --------------------------------------------------------------------
65+ # CONTENT SECURITY POLICY
66+ # --------------------------------------------------------------------
67+
68+ # contentsecuritypolicy.reportOnly = false
69+ # contentsecuritypolicy.defaultSrc = 'none'
70+ # contentsecuritypolicy.scriptSrc = 'self'
71+ # contentsecuritypolicy.styleSrc = 'self'
72+ # contentsecuritypolicy.imageSrc = 'self'
73+ # contentsecuritypolicy.base_uri = null
74+ # contentsecuritypolicy.childSrc = null
75+ # contentsecuritypolicy.connectSrc = 'self'
76+ # contentsecuritypolicy.fontSrc = null
77+ # contentsecuritypolicy.formAction = null
78+ # contentsecuritypolicy.frameAncestors = null
79+ # contentsecuritypolicy.mediaSrc = null
80+ # contentsecuritypolicy.objectSrc = null
81+ # contentsecuritypolicy.pluginTypes = null
82+ # contentsecuritypolicy.reportURI = null
83+ # contentsecuritypolicy.sandbox = false
84+ # contentsecuritypolicy.upgradeInsecureRequests = false
85+
86+ # --------------------------------------------------------------------
87+ # HONEYPOT
88+ # --------------------------------------------------------------------
89+
90+ # honeypot.hidden = 'true'
91+ # honeypot.label = 'Fill This Field'
92+ # honeypot.name = 'honeypot'
93+ # honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>'
94+
95+ # --------------------------------------------------------------------
96+ # CodeIgniter4-RoadRunner
97+ # --------------------------------------------------------------------
98+
99+ CIROAD_TEMP_UPLOAD = true
0 commit comments