1 changed files with 89 additions and 0 deletions
@ -0,0 +1,89 @@
|
||||
#-------------------------------------------------------------------- |
||||
# 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. |
||||
#-------------------------------------------------------------------- |
||||
|
||||
migrations.enabled = true |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# APP |
||||
#-------------------------------------------------------------------- |
||||
|
||||
app.baseURL = 'http://aauth-ci4.local' |
||||
# app.forceGlobalSecureRequests = false |
||||
|
||||
# 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 = localhost |
||||
database.default.database = aauth_v3_ci4 |
||||
database.default.username = root |
||||
database.default.password = root |
||||
database.default.DBDriver = MySQLi |
||||
|
||||
database.tests.hostname = localhost |
||||
database.tests.database = aauth_v3_ci4_testing |
||||
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=""/>' |
Loading…
Reference in new issue