mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-20 17:02:16 +00:00
Zipping on the fly
This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Domain\SetupWizard\Controllers;
|
||||
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Response;
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
class PingAPIController extends Controller
|
||||
{
|
||||
@@ -13,4 +10,4 @@ class PingAPIController extends Controller
|
||||
{
|
||||
return response('pong');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,42 +21,11 @@ class StoreEnvironmentSettingsController extends Controller
|
||||
],
|
||||
's3' => [
|
||||
'FILESYSTEM_DRIVER' => $request->input('storage.driver') ?? null,
|
||||
'AWS_ACCESS_KEY_ID' => $request->input('storage.key') ?? null,
|
||||
'AWS_SECRET_ACCESS_KEY' => $request->input('storage.secret') ?? null,
|
||||
'AWS_DEFAULT_REGION' => $request->input('storage.region') ?? null,
|
||||
'AWS_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
],
|
||||
'spaces' => [
|
||||
'FILESYSTEM_DRIVER' => $request->input('storage.driver') ?? null,
|
||||
'DO_SPACES_KEY' => $request->input('storage.key') ?? null,
|
||||
'DO_SPACES_SECRET' => $request->input('storage.secret') ?? null,
|
||||
'DO_SPACES_ENDPOINT' => $request->input('storage.endpoint') ?? null,
|
||||
'DO_SPACES_REGION' => $request->input('storage.region') ?? null,
|
||||
'DO_SPACES_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
],
|
||||
'wasabi' => [
|
||||
'FILESYSTEM_DRIVER' => $request->input('storage.driver') ?? null,
|
||||
'WASABI_KEY' => $request->input('storage.key') ?? null,
|
||||
'WASABI_SECRET' => $request->input('storage.secret') ?? null,
|
||||
'WASABI_ENDPOINT' => $request->input('storage.endpoint') ?? null,
|
||||
'WASABI_REGION' => $request->input('storage.region') ?? null,
|
||||
'WASABI_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
],
|
||||
'backblaze' => [
|
||||
'FILESYSTEM_DRIVER' => $request->input('storage.driver') ?? null,
|
||||
'BACKBLAZE_KEY' => $request->input('storage.key') ?? null,
|
||||
'BACKBLAZE_SECRET' => $request->input('storage.secret') ?? null,
|
||||
'BACKBLAZE_ENDPOINT' => $request->input('storage.endpoint') ?? null,
|
||||
'BACKBLAZE_REGION' => $request->input('storage.region') ?? null,
|
||||
'BACKBLAZE_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
],
|
||||
'oss' => [
|
||||
'FILESYSTEM_DRIVER' => $request->input('storage.driver') ?? null,
|
||||
'OSS_ACCESS_KEY_ID' => $request->input('storage.key') ?? null,
|
||||
'OSS_SECRET_ACCESS_KEY' => $request->input('storage.secret') ?? null,
|
||||
'OSS_ENDPOINT' => $request->input('storage.endpoint') ?? null,
|
||||
'OSS_REGION' => $request->input('storage.region') ?? null,
|
||||
'OSS_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
'S3_ACCESS_KEY_ID' => $request->input('storage.key') ?? null,
|
||||
'S3_SECRET_ACCESS_KEY' => $request->input('storage.secret') ?? null,
|
||||
'S3_DEFAULT_REGION' => $request->input('storage.region') ?? null,
|
||||
'S3_BUCKET' => $request->input('storage.bucket') ?? null,
|
||||
'S3_URL' => $request->input('storage.endpoint') ?? null,
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user