38 lines
971 B
Nix
38 lines
971 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts = {
|
|
"www.clerie.de" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
return = "301 https://clerie.de$request_uri";
|
|
};
|
|
};
|
|
|
|
"clerie.de" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = fetchGit {
|
|
url = "https://git.clerie.de/clerie/clerie.de.git";
|
|
ref = "main";
|
|
rev = "67738c06cff85e2cefbea87d45c277bd01a3778a";
|
|
};
|
|
locations."~ ^/.well-known/openpgpkey/hu/[a-z0-9]+/?$" = {
|
|
extraConfig = ''
|
|
default_type application/octet-stream;
|
|
add_header Access-Control-Allow-Origin * always;
|
|
try_files /gpg/clerie@clerie.de =404;
|
|
'';
|
|
};
|
|
locations."= /.well-known/openpgpkey/policy" = {
|
|
extraConfig = ''
|
|
default_type application/octet-stream;
|
|
add_header Access-Control-Allow-Origin * always;
|
|
'';
|
|
return = "200 ''";
|
|
};
|
|
};
|
|
};
|
|
}
|