ROCKPro64-Server/system/services/server/vaultwarden/nginx/default.nix
2025-02-28 13:32:11 -05:00

11 lines
272 B
Nix

{ config, lib, ... }:
{
services.nginx.virtualHosts."pass.nixfox.ca" = lib.mkIf config.services.vaultwarden.enable {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8222";
proxyWebsockets = true;
};
};
}