-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenv
115 lines (97 loc) · 4.02 KB
/
env
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
#--------------------------------------------------------------------
# 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
#--------------------------------------------------------------------
CI_ENVIRONMENT = development
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
app.baseURL = ''
#app.forceGlobalSecureRequests = true
#app.sessionDriver = 'CodeIgniter\Session\Handlers\FileHandler'
#app.sessionCookieName = 'ci_session'
#app.sessionSavePath = NULL
#app.sessionMatchIP = false
#app.sessionTimeToUpdate = 300
#app.sessionRegenerateDestroy = false
#app.cookiePrefix = ''
#app.cookieDomain = ''
#app.cookiePath = '/'
#app.cookieSecure = false
#app.cookieHTTPOnly = false
#app.CSRFProtection = false
#app.CSRFTokenName = 'csrf_test_name'
#app.CSRFCookieName = 'csrf_cookie_name'
#app.CSRFExpire = 7200
#app.CSRFRegenerate = true
#app.CSRFExcludeURIs = []
#app.CSPEnabled = false
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
database.default.hostname =
database.default.database =
database.default.username =
database.default.password =
database.default.DBDriver = MySQLi
# database.tests.hostname = localhost
# database.tests.database = ci4
# database.tests.username = root
# database.tests.password = root
# database.tests.DBDriver = MySQLi
#--------------------------------------------------------------------
# CONTENT SECURITY POLICY
#--------------------------------------------------------------------
# contentsecuritypolicy.reportOnly = false
# contentsecuritypolicy.defaultSrc = 'none'
# contentsecuritypolicy.scriptSrc = 'self'
# contentsecuritypolicy.styleSrc = 'self'
# contentsecuritypolicy.imageSrc = 'self'
# contentsecuritypolicy.base_uri = null
# contentsecuritypolicy.childSrc = null
# contentsecuritypolicy.connectSrc = 'self'
# contentsecuritypolicy.fontSrc = null
# contentsecuritypolicy.formAction = null
# contentsecuritypolicy.frameAncestors = null
# contentsecuritypolicy.mediaSrc = null
# contentsecuritypolicy.objectSrc = null
# contentsecuritypolicy.pluginTypes = null
# contentsecuritypolicy.reportURI = null
# contentsecuritypolicy.sandbox = false
# contentsecuritypolicy.upgradeInsecureRequests = false
#--------------------------------------------------------------------
# HONEYPOT
#--------------------------------------------------------------------
# honeypot.hidden = 'true'
# honeypot.label = 'Fill This Field'
# honeypot.name = 'honeypot'
# honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>'
#--------------------------------------------------------------------
# Cafe Variome Constants
#--------------------------------------------------------------------
PHP_BIN_PATH = /usr/bin/php
EAV_BATCH_SIZE = 30000
NEO4J_BATCH_SIZE = 30000
SPREADSHEET_BATCH_SIZE = 1000
ELASTICSERACH_AGGREGATE_SIZE = 100000
ELASTICSERACH_EXTRACT_AGGREGATE_SIZE = 10000
#--------------------------------------------------------------------
# Authentication and Session Names
#--------------------------------------------------------------------
ALLOW_LOCAL_AUTHENTICATION = false # To determine if local authentication can happen or not.
AUTHENTICATOR_SESSION_NAME = '_CV_AUTHENTICATOR_ID'
SSO_RANDOM_STATE_SESSION_NAME = '_CV_OAUTH2_STATE'
SSO_TOKEN_SESSION_NAME = '_CV_OAUTH2_TOKEN'
SSO_REFRESH_TOKEN_SESSION_NAME = '_CV_OAUTH2_REFRESH_TOKEN'
POST_AUTHENTICATION_REDIRECT_URL_SESSION_NAME = '_CV_REDIRECT_URL'
SSO_ID_TOKEN_SESSION_NAME = '_CV_OAUTH2_ID_TOKEN'