forked from mirrors_public/oddlama_nix-config
fix: wrong ente bucket name; document ente storage limit increase
This commit is contained in:
parent
f69fe83c42
commit
9ba0293c6c
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
# NOTE: To increase storage for all users:
|
||||||
|
# $ runuser -u ente -- psql
|
||||||
|
# ente => UPDATE subscriptions SET storage = 6597069766656;
|
||||||
let
|
let
|
||||||
enteAccountsDomain = "accounts.photos.${globals.domains.me}";
|
enteAccountsDomain = "accounts.photos.${globals.domains.me}";
|
||||||
enteAlbumsDomain = "albums.photos.${globals.domains.me}";
|
enteAlbumsDomain = "albums.photos.${globals.domains.me}";
|
||||||
|
@ -191,7 +194,7 @@ in
|
||||||
${lib.getExe pkgs.curl} --retry 5 --retry-connrefused --fail --no-progress-meter -o /dev/null "http://localhost:9000/minio/health/live"
|
${lib.getExe pkgs.curl} --retry 5 --retry-connrefused --fail --no-progress-meter -o /dev/null "http://localhost:9000/minio/health/live"
|
||||||
|
|
||||||
# Make sure bucket exists
|
# Make sure bucket exists
|
||||||
mkdir -p ${lib.escapeShellArg config.services.minio.dataDir}/data/ente
|
mkdir -p ${lib.escapeShellArg config.services.minio.dataDir}/ente
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue