0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

Add empty $CONF['database_socket'] to avoid warnings

... about reading an undefined config option
This commit is contained in:
Christian Boltz 2020-02-12 15:05:04 +01:00
parent 666bb0218a
commit 3d0add075a
No known key found for this signature in database
GPG Key ID: C6A682EA63C82F1C

View File

@ -118,9 +118,10 @@ $CONF['database_ssl_cipher'] = NULL;
// uncomment and change the following
// $CONF['database_port'] = '5432';
//
// If you wish to connect using a local socket file (e.g /var/run/mysql.sock) uncomment the below.
// If you wish to connect using a local socket file (e.g /var/run/mysql.sock) set this to the socket path.
// $CONF['database_socket'] = '/var/run/mysql/mysqld.sock';
//
$CONF['database_socket'] = '';
// If sqlite is used, specify the database file path:
// $CONF['database_name'] = '/etc/postfix/sqlite/postfixadmin.db'