Deploy Vaultwarden
This commit is contained in:
parent
57c51c4f7c
commit
57e08d101d
|
@ -13,6 +13,8 @@
|
||||||
|
|
||||||
"/etc/zfs"
|
"/etc/zfs"
|
||||||
"/var/lib/samba"
|
"/var/lib/samba"
|
||||||
|
|
||||||
|
"/var/lib/bitwarden_rs"
|
||||||
];
|
];
|
||||||
files = [
|
files = [
|
||||||
"/etc/machine-id"
|
"/etc/machine-id"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./samba.nix
|
./samba.nix
|
||||||
|
./vaultwarden.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
{...}: let
|
||||||
|
ipInternal = "10.13.1.1";
|
||||||
|
|
||||||
|
dom = "pw.min.rip";
|
||||||
|
in {
|
||||||
|
services.vaultwarden = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
config = {
|
||||||
|
DOMAIN = "https://${dom}";
|
||||||
|
SIGNUPS_ALLOWED = false;
|
||||||
|
SHOW_PASSWORD_HINT = false;
|
||||||
|
|
||||||
|
ROCKET_ADDRESS = ipInternal;
|
||||||
|
ROCKET_PORT = 14210;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,6 +8,8 @@
|
||||||
./nebula.nix
|
./nebula.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
|
|
||||||
|
./shim-vaultwarden.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
security.acme = {
|
security.acme = {
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
{...}: let
|
||||||
|
httpIntAddr = "10.13.1.1";
|
||||||
|
httpIntPort = 14210;
|
||||||
|
dom = "pw.min.rip";
|
||||||
|
in {
|
||||||
|
services.nginx.virtualHosts.${dom} = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://${toString httpIntAddr}:${toString httpIntPort}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue