server-configs/machines/gerd/services/fricloud-website.nix
eyjhb 303b66493b
gerd.fricloud-website: added fricloud.dk website, to get certificate
... as well as having a website at some point
2024-08-10 17:49:02 +02:00

27 lines
802 B
Nix

{ config, pkgs, ... }:
{
services.nginx.virtualHosts."fricloud.dk" = {
forceSSL = true;
enableACME = true;
root = pkgs.writeTextDir "index.html" ''
<html>
<head>
<title>Fricloud.dk</title>
</head>
<body>
<marquee
direction="down"
behavior="alternate">
<marquee behavior="alternate">Under Construction</marquee>
</marquee>
</body>
</html>
'';
};
# setup group for fricloud.dk cert + add nginx to group.
# group `fricloud-domain` is used for users that need access to the domain certificate, e.g. murmur
security.acme.certs."fricloud.dk".group = config.users.groups.fricloud-domain.name;
users.groups.fricloud-domain.members = [ config.users.users.nginx.name ];
}