update minio

This commit is contained in:
zack 2024-10-22 15:15:39 -04:00
parent 2b83e989a7
commit 8ba8fc98ca
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
7 changed files with 118 additions and 2 deletions

View file

@ -4,6 +4,7 @@
{
pkgs,
inputs,
config,
...
}: {
imports = [
@ -38,6 +39,19 @@
services.gh.enable = true;
services.fail2ban.enable = true;
age.secrets = {
zc_key = {
owner = "zoeyscomputer-phx";
group = "zoeyscomputer-phx";
file = ./sec/zc_key.age;
};
zc_db_pass = {
owner = "zoeyscomputer-phx";
group = "zoeyscomputer-phx";
file = ./sec/zc_db_pass.age;
};
};
sites = {
cv.enable = true;
gitlab.enable = true;
@ -48,7 +62,20 @@
map.enable = true;
hydra.enable = true;
cache.enable = true;
zoeycomputer.enable = true;
minio.enable = true;
zoeycomputer = {
enable = true;
domain = "zoeys.computer";
phx = {
database = {
name = "zoeyscomputer";
user = "zoeyscomputer";
passwordFile = config.age.secrets.zc_db_pass.path; # Optional
host = "localhost"; # Optional, defaults to localhost
};
secret_key_file = config.age.secrets.zc_key.path;
};
};
};
zmio.blog.enable = true;

Binary file not shown.

Binary file not shown.