Hi - I'm running the official Espo container on Kubernetes, and there are a couple of config parameters I want to customize, that aren't just basic types.
The two in particular I'm looking at are enabling SSL for the database connection, and turning on logging.
The config changes for these are:
and
How can I do this for Espo running in Docker?
Thanks
-- Steve
The two in particular I'm looking at are enabling SSL for the database connection, and turning on logging.
The config changes for these are:
Code:
'logger' => [ ... 'level' => 'DEBUG', ]
Code:
'database' => [ 'sslCA' => 'path-to-cert.crt.pem', ],
Thanks
-- Steve