ci4
/
env
69 строк · 2.3 Кб
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 = production
18
19#--------------------------------------------------------------------
20# APP
21#--------------------------------------------------------------------
22
23# app.baseURL = ''
24# If you have trouble with `.`, you could also use `_`.
25# app_baseURL = ''
26# app.forceGlobalSecureRequests = false
27# app.CSPEnabled = false
28
29#--------------------------------------------------------------------
30# DATABASE
31#--------------------------------------------------------------------
32
33# database.default.hostname = localhost
34# database.default.database = ci4
35# database.default.username = root
36# database.default.password = root
37# database.default.DBDriver = MySQLi
38# database.default.DBPrefix =
39# database.default.port = 3306
40
41# If you use MySQLi as tests, first update the values of Config\Database::$tests.
42# database.tests.hostname = localhost
43# database.tests.database = ci4_test
44# database.tests.username = root
45# database.tests.password = root
46# database.tests.DBDriver = MySQLi
47# database.tests.DBPrefix =
48# database.tests.charset = utf8mb4
49# database.tests.DBCollat = utf8mb4_general_ci
50# database.tests.port = 3306
51
52#--------------------------------------------------------------------
53# ENCRYPTION
54#--------------------------------------------------------------------
55
56# encryption.key =
57
58#--------------------------------------------------------------------
59# SESSION
60#--------------------------------------------------------------------
61
62# session.driver = 'CodeIgniter\Session\Handlers\FileHandler'
63# session.savePath = null
64
65#--------------------------------------------------------------------
66# LOGGER
67#--------------------------------------------------------------------
68
69# logger.threshold = 4
70