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.
2 parents 572f5fc + f304206 commit 5ff908dCopy full SHA for 5ff908d
assets/settings.lagoon.php
@@ -30,6 +30,8 @@
30
}
31
32
// Lagoon database connection.
33
+// If you require a specific charset or collation for your site,
34
+// copy, update and add this paragraph to your all.settings.php file.
35
if (getenv('LAGOON')) {
36
$databases['default']['default'] = [
37
'driver' => 'mysql',
@@ -38,6 +40,8 @@
38
40
'password' => getenv('MARIADB_PASSWORD') ?: 'drupal',
39
41
'host' => getenv('MARIADB_HOST') ?: 'mariadb',
42
'port' => getenv('MARIADB_PORT') ?: 3306,
43
+ 'charset' => getenv('MARIADB_CHARSET') ?: 'utf8mb4',
44
+ 'collation' => getenv('MARIADB_COLLATION') ?: 'utf8mb4_general_ci',
45
'prefix' => '',
46
];
47
0 commit comments