fix bug in internal relative paths
This commit is contained in:
parent
468c95c7a1
commit
9b3cc59d74
|
@ -57,7 +57,7 @@ with lib;
|
||||||
group = "fabian";
|
group = "fabian";
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
extraGroups = [ "users" "wheel" "networkmanager" "dialout" "libvirtd" ];
|
extraGroups = [ "users" "wheel" "networkmanager" "dialout" "libvirtd" ];
|
||||||
openssh.authorizedKeys.keyFiles = [ "${flakes.self}/pki/fabian.pub" ];
|
openssh.authorizedKeys.keyFiles = [ ../pki/fabian.pub ];
|
||||||
};
|
};
|
||||||
groups.fabian.gid = 1000;
|
groups.fabian.gid = 1000;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, pkgs, flakes, ... }:
|
{ lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ with lib;
|
||||||
|
|
||||||
ssl_verify_depth 1;
|
ssl_verify_depth 1;
|
||||||
ssl_verify_client on;
|
ssl_verify_client on;
|
||||||
ssl_client_certificate ${flakes.self}/pki/gatekeeper_ca.pem;
|
ssl_client_certificate ${../../pki/gatekeeper_ca.pem};
|
||||||
if ($ssl_client_verify != "SUCCESS") {
|
if ($ssl_client_verify != "SUCCESS") {
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue