forked from DGNum/infrastructure
18 lines
333 B
Nix
18 lines
333 B
Nix
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{
|
|
dgn-s3 = {
|
|
enable = true;
|
|
|
|
ports = {
|
|
admin_api = 3903;
|
|
rpc = 3901;
|
|
s3_api = 3900;
|
|
s3_web = 3902;
|
|
};
|
|
|
|
data_dir = "/data/garage/data";
|
|
metadata_dir = "/data/garage/meta";
|
|
};
|
|
}
|