nixos-config/machines/chungus/service-s3.nix
Ingolf Wagner 4f3efeaa4c
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 9m37s
🔧 add some minio information
2024-11-12 14:08:44 +09:00

45 lines
1.1 KiB
Nix

{ config, factsGenerator, ... }:
{
healthchecks.closed.retiolum.ports.s3 = [
9000
9001
];
healthchecks.http.s3 = {
url = "http://s3.chungus.private:9001/login";
expectedContent = "minio";
};
clan.core.facts.services.s3 = factsGenerator.password {
name = "root";
service = "s3";
};
services.minio = {
enable = true;
region = "home";
# this file was adjusted right after creation
# MINIO_ROOT_USER=root
# MINIO_ROOT_PASSWORD=<the password>
rootCredentialsFile = config.clan.core.facts.services.s3.secret."s3.root".path;
};
services.nginx = {
enable = true;
virtualHosts."s3.${config.networking.hostName}.private" = {
locations."/" = {
recommendedProxySettings = true;
proxyWebsockets = true;
proxyPass = "http://localhost:9000";
};
};
virtualHosts."minio.${config.networking.hostName}.private" = {
locations."/" = {
recommendedProxySettings = true;
proxyWebsockets = true;
proxyPass = "http://localhost:9001";
};
};
};
}