Add vaultwarden.

This commit is contained in:
Lorenzo Good 2025-02-03 18:10:01 -06:00
parent abeef2cb58
commit cf9c488824
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
8 changed files with 29 additions and 10 deletions

View file

@ -0,0 +1,13 @@
{config, ...}: {
foehammer.caddy.enable = true;
services.caddy = {
virtualHosts = {
"passwords.foehammer.me" = {
extraConfig = ''
reverse_proxy :${toString config.foehammer.services.vaultwarden.port}
'';
};
};
};
}