add sks sevre

This commit is contained in:
stubbfel
2018-01-20 16:33:50 +01:00
parent 821683f5ef
commit 45a80b2b72
2 changed files with 13 additions and 0 deletions

12
services/sks.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."keys.stubbe.rocks" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:${toString config.services.sks.hkpPort}";
};
services.sks.enable = true;
}