env 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. # ENVIRONMENT
  14. #--------------------------------------------------------------------
  15. # CI_ENVIRONMENT = production
  16. #--------------------------------------------------------------------
  17. # APP
  18. #--------------------------------------------------------------------
  19. # app.baseURL = ''
  20. # app.forceGlobalSecureRequests = false
  21. # app.sessionDriver = 'CodeIgniter\Session\Handlers\FileHandler'
  22. # app.sessionCookieName = 'ci_session'
  23. # app.sessionSavePath = NULL
  24. # app.sessionMatchIP = false
  25. # app.sessionTimeToUpdate = 300
  26. # app.sessionRegenerateDestroy = false
  27. # app.cookiePrefix = ''
  28. # app.cookieDomain = ''
  29. # app.cookiePath = '/'
  30. # app.cookieSecure = false
  31. # app.cookieHTTPOnly = false
  32. # app.CSRFProtection = false
  33. # app.CSRFTokenName = 'csrf_test_name'
  34. # app.CSRFCookieName = 'csrf_cookie_name'
  35. # app.CSRFExpire = 7200
  36. # app.CSRFRegenerate = true
  37. # app.CSRFExcludeURIs = []
  38. # app.CSPEnabled = false
  39. #--------------------------------------------------------------------
  40. # DATABASE
  41. #--------------------------------------------------------------------
  42. # database.default.hostname = localhost
  43. # database.default.database = ci4
  44. # database.default.username = root
  45. # database.default.password = root
  46. # database.default.DBDriver = MySQLi
  47. # database.tests.hostname = localhost
  48. # database.tests.database = ci4
  49. # database.tests.username = root
  50. # database.tests.password = root
  51. # database.tests.DBDriver = MySQLi
  52. #--------------------------------------------------------------------
  53. # CONTENT SECURITY POLICY
  54. #--------------------------------------------------------------------
  55. # contentsecuritypolicy.reportOnly = false
  56. # contentsecuritypolicy.defaultSrc = 'none'
  57. # contentsecuritypolicy.scriptSrc = 'self'
  58. # contentsecuritypolicy.styleSrc = 'self'
  59. # contentsecuritypolicy.imageSrc = 'self'
  60. # contentsecuritypolicy.base_uri = null
  61. # contentsecuritypolicy.childSrc = null
  62. # contentsecuritypolicy.connectSrc = 'self'
  63. # contentsecuritypolicy.fontSrc = null
  64. # contentsecuritypolicy.formAction = null
  65. # contentsecuritypolicy.frameAncestors = null
  66. # contentsecuritypolicy.mediaSrc = null
  67. # contentsecuritypolicy.objectSrc = null
  68. # contentsecuritypolicy.pluginTypes = null
  69. # contentsecuritypolicy.reportURI = null
  70. # contentsecuritypolicy.sandbox = false
  71. # contentsecuritypolicy.upgradeInsecureRequests = false
  72. #--------------------------------------------------------------------
  73. # ENCRYPTION
  74. #--------------------------------------------------------------------
  75. # encryption.key =
  76. # encryption.driver = OpenSSL
  77. #--------------------------------------------------------------------
  78. # HONEYPOT
  79. #--------------------------------------------------------------------
  80. # honeypot.hidden = 'true'
  81. # honeypot.label = 'Fill This Field'
  82. # honeypot.name = 'honeypot'
  83. # honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>'
  84. # honeypot.container = '<div style="display:none">{template}</div>'