Add Contabo Object Storage support for Meet egress recordings.
Deploy Ladill Meet / deploy (push) Successful in 49s

Use a dedicated meet-recordings S3 disk with path-style endpoints for Contabo, and pass force_path_style through to LiveKit egress uploads.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-04 03:45:49 +00:00
co-authored by Cursor
parent ebc11691e2
commit d2bf08ec45
5 changed files with 54 additions and 6 deletions
@@ -90,7 +90,7 @@ class LiveKitEgressService
}
/**
* @return array<string, string>|null
* @return array<string, bool|string>|null
*/
protected function s3UploadConfig(): ?array
{
@@ -103,7 +103,8 @@ class LiveKitEgressService
$config = [
'bucket' => $bucket,
'region' => (string) ($egress['region'] ?? 'us-east-1'),
'region' => (string) ($egress['region'] ?? 'default'),
'force_path_style' => (bool) ($egress['force_path_style'] ?? true),
];
foreach (['access_key', 'secret', 'session_token', 'endpoint', 'assume_role_arn', 'assume_role_external_id'] as $key) {