#--------------------------------------------------------------------
# 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 = production
CI_ENVIRONMENT = development

#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------

app.baseURL = 'https://calientitas.kmarketexpress.cl/'
app.indexPage = ''
# app.baseURL = ''
# If you have trouble with `.`, you could also use `_`.
# app_baseURL = ''
# app.forceGlobalSecureRequests = false
# app.CSPEnabled = false
app.csrfProtection = false

#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------

# database.default.hostname = localhost
# database.default.database = ci4
# database.default.username = root
# database.default.password = root
# database.default.DBDriver = MySQLi
# database.default.DBPrefix =
# database.default.port = 3306

# If you use MySQLi as tests, first update the values of Config\Database::$tests.
# database.tests.hostname = localhost
# database.tests.database = ci4_test
# database.tests.username = root
# database.tests.password = root
# database.tests.DBDriver = MySQLi
# database.tests.DBPrefix =
# database.tests.charset = utf8mb4
# database.tests.DBCollat = utf8mb4_general_ci
# database.tests.port = 3306

#--------------------------------------------------------------------
# ENCRYPTION
#--------------------------------------------------------------------

# encryption.key =

#--------------------------------------------------------------------
# SESSION
#--------------------------------------------------------------------

# session.driver = 'CodeIgniter\Session\Handlers\FileHandler'
# session.savePath = null
session.driver = CodeIgniter\Session\Handlers\FileHandler
session.cookieName = 'ci_session_calientitas'
session.expiration = 7200
session.savePath = /home/inspirat/public_html/CALIENTITAS/writable/session
session.matchIP = false
session.timeToUpdate = 0
session.regenerateDestroy = false

# Si quieres usar el método que acabamos de probar (PHP Mail)
email.protocol = 'mail'

# O si prefieres usar SMTP (Recomendado para que no llegue a SPAM)
# Asegúrate de que los datos sean EXACTOS a los de tu cPanel
email.protocol = 'smtp'
email.SMTPHost = 'mail.kmarketexpress.cl'
email.SMTPUser = 'no-reply@kmarketexpress.cl'
email.SMTPPass = 'Km4Rk3tExpr33SS'
email.SMTPPort = 465
email.SMTPCrypto = 'ssl'
email.fromEmail = 'no-reply@kmarketexpress.cl'
email.fromName = 'Calientitas'

#--------------------------------------------------------------------
# LOGGER
#--------------------------------------------------------------------

# logger.threshold = 4