Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions images/bay-php/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,11 @@
} else {
$settings['file_temp_path'] = getenv("TMPDIR") ?: "/tmp";
}

// Hash Salt.
$settings['hash_salt'] = hash('sha256', getenv('LAGOON_PROJECT'));
$settings['hash_salt'] = getenv('DRUPAL_HASH_SALT');
if (empty($settings['hash_salt'])) {
throw new \Exception('DRUPAL_HASH_SALT missing.');
}

// Configure platformwide cache tag blacklists.
// These will be excluded when Drupal outputs the cache tag list
Expand Down