diff --git a/bootstrap/container.php b/bootstrap/container.php index 8ed3cab..209981a 100644 --- a/bootstrap/container.php +++ b/bootstrap/container.php @@ -54,6 +54,7 @@ return [ 'secret' => $config['storage']['secret'], ], 'region' => $config['storage']['region'], + 'endpoint' => $config['storage']['endpoint'], 'version' => 'latest', '@http' => ['stream' => true], ]); diff --git a/install/index.php b/install/index.php index f25cb28..662693e 100644 --- a/install/index.php +++ b/install/index.php @@ -134,6 +134,7 @@ $app->post('/', function (Request $request, Response $response, \DI\Container $c $config['storage']['key'] = param($request, 'storage_key'); $config['storage']['secret'] = param($request, 'storage_secret'); $config['storage']['region'] = param($request, 'storage_region'); + $config['storage']['endpoint'] = param($request, 'storage_endpoint'); $config['storage']['bucket'] = param($request, 'storage_bucket'); $config['storage']['path'] = param($request, 'storage_path'); break; diff --git a/install/templates/install.twig b/install/templates/install.twig index 0db4754..5d0e5f1 100644 --- a/install/templates/install.twig +++ b/install/templates/install.twig @@ -71,7 +71,7 @@ @@ -101,6 +101,12 @@ +