6 changed files with 126 additions and 27 deletions
@ -0,0 +1,20 @@
|
||||
# This file tells which files and directories should be ignored and |
||||
# NOT downloaded when using composer to pull down a project with |
||||
# the --prefer-dist option selected. Used to remove development |
||||
# specific files so user has a clean download. |
||||
|
||||
# git files |
||||
.gitattributes export-ignore |
||||
.gitignore export-ignore |
||||
|
||||
# helper config files |
||||
.editorconfig export-ignore |
||||
.travis.yml export-ignore |
||||
|
||||
# They don't want all of our tests... |
||||
_travis/ export-ignore |
||||
phpunit.yml export-ignore |
||||
tests/ export-ignore |
||||
|
||||
# User Guide Source Files |
||||
user_guide_src |
@ -0,0 +1,93 @@
|
||||
#-------------------------------------------------------------------- |
||||
# 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. |
||||
#-------------------------------------------------------------------- |
||||
|
||||
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_test |
||||
# database.default.username = travis |
||||
# database.default.password = |
||||
# database.default.DBDriver = MySQLi |
||||
|
||||
database.tests.hostname = localhost |
||||
database.tests.database = aauth_test |
||||
database.tests.username = travis |
||||
# database.tests.password = |
||||
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