Initial commit

This commit is contained in:
2026-05-20 18:25:15 +02:00
commit 95f0b4ff01
288 changed files with 90909 additions and 0 deletions

16
config/fileservers.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'secret_key' => env('FS_SECRET_KEY'),
'servers' => [
'oedipus' => [
'base_url' => env('OEDIPUS_BASE_URL'),
'check_existence' => env('OEDIPUS_CHECK_EXISTENCE'),
'delete_file' => env('OEDIPUS_DELETE_FILE'),
'download' => env('OEDIPUS_DOWNLOAD'),
'file_explorer' => env('OEDIPUS_FILE_EXPLORER'),
'get_file_size' => env('OEDIPUS_GET_FILE_SIZE'),
'upload_chunk' => env('OEDIPUS_UPLOAD_CHUNK'),
],
]
];