Mino example

This commit is contained in:
Filippo Berto 2023-08-16 16:30:45 +02:00
parent 7459ae0e96
commit dc7a18efc3
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 21 additions and 0 deletions

13
modules/nixos/minio.nix Normal file
View file

@ -0,0 +1,13 @@
{
networking.firewall.allowedTCPPorts = [
9000
9001
];
services.minio = {
enable = true;
browser = true;
listenAddress = "0.0.0.0:9000";
consoleAddress = "0.0.0.0:9001";
};
}