feat" diffkit self host" (#72)
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions

This commit is contained in:
Hari 2026-04-14 12:44:16 -04:00 committed by GitHub
parent fa2260d8d5
commit d482eb01e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 83 additions and 1 deletions

View file

@ -6,6 +6,7 @@ let
forgejoDomain = "git.harivan.sh";
vaultDomain = "vault.harivan.sh";
betternasDomain = "api.betternas.com";
diffkitDomain = "diffs.harivan.sh";
in
{
security.acme = {
@ -43,6 +44,15 @@ in
locations."/".proxyPass = "http://127.0.0.1:8222";
};
virtualHosts.${diffkitDomain} = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:3200";
proxyWebsockets = true;
};
};
virtualHosts.${betternasDomain} = {
enableACME = true;
forceSSL = true;