We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b097a58 commit 1cab6d5Copy full SHA for 1cab6d5
assets/settings.lagoon.php
@@ -40,8 +40,8 @@
40
'password' => getenv('MARIADB_PASSWORD') ?: 'drupal',
41
'host' => getenv('MARIADB_HOST') ?: 'mariadb',
42
'port' => getenv('MARIADB_PORT') ?: 3306,
43
- 'charset' => 'utf8mb4',
44
- 'collation' => 'utf8mb4_general_ci',
+ 'charset' => getenv('MARIADB_CHARSET') ?: 'utf8mb4',
+ 'collation' => getenv('MARIADB_COLLATION') ?: 'utf8mb4_general_ci',
45
'prefix' => '',
46
];
47
}
0 commit comments