minio: Use legacy package
This commit is contained in:
parent
f7609a7ee6
commit
fef4b471f0
@ -1,4 +1,4 @@
|
|||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
domain = "s3.giugl.io";
|
domain = "s3.giugl.io";
|
||||||
@ -8,7 +8,10 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
services = {
|
services = {
|
||||||
minio.enable = true;
|
minio = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.minio_legacy_fs;
|
||||||
|
};
|
||||||
|
|
||||||
nginx.virtualHosts.${domain} = {
|
nginx.virtualHosts.${domain} = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
@ -24,7 +27,7 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.extraHosts = ''
|
networking.extraHosts = ''
|
||||||
${architectInterfaceAddress "lan"} ${domain}
|
${architectInterfaceAddress "lan"} ${domain}
|
||||||
${architectInterfaceAddress "wireguard"} ${domain}
|
${architectInterfaceAddress "wireguard"} ${domain}
|
||||||
|
Loading…
Reference in New Issue
Block a user