Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add recordings Directory (MINOR) #591

Merged
merged 4 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,17 @@ parameters:
app.scheme: '%env(APP_SCHEME)%'

services:
gaufrette.recording_fs_filesystem:
class: Gaufrette\Filesystem
arguments:
- '@gaufrette.adapter.recording_storage'

gaufrette.adapter.recording_storage:
class: Gaufrette\Adapter\Local
arguments:
- '%kernel.project_dir%/data/recording'
public: true

Gaufrette\FilesystemInterface $recordingFilesystem:
alias: gaufrette.recording_fs_filesystem

Expand Down
1 change: 1 addition & 0 deletions data/recording/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This directory stores the recordings uploaded from the livekit system
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'

x-app-common: &jitsi_admin_app
# image: h2invent/jitsi-admin-main:latest
image: h2invent/jitsi-admin-main:latest
build: .
environment:
APACHE_DOCUMENT_ROOT: "public/"
Expand Down
Loading