You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.1 KiB
95 lines
3.1 KiB
#-------------------------------------------------------------------- |
|
# 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 |
|
|
|
aauth.dbProfile = 'tests' |
|
aauth.loginRemember = '-1 day' |
|
aauth.dbSoftDeleteUsers = true |
|
aauth.dbSoftDeleteGroups = true |
|
aauth.dbSoftDeletePerms = true |
|
|
|
#-------------------------------------------------------------------- |
|
# APP |
|
#-------------------------------------------------------------------- |
|
|
|
# app.baseURL = '' |
|
# 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 = mysql |
|
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=""/>'
|
|
|