clan-infra/modules/web01/homepage.nix
DavHau 3742ec99b9
Some checks failed
build / test (push) Failing after 10s
homepage: deprecate deployment instructions
now lives at clan/clan-homepage
2023-07-17 23:26:10 +02:00

24 lines
498 B
Nix

{ pkgs, self, ... }: {
security.acme.defaults.email = "admins@clan.lol";
security.acme.acceptTerms = true;
services.nginx = {
virtualHosts."clan.lol" = {
forceSSL = true;
enableACME = true;
# to be deployed via rsync
root = "/var/www";
extraConfig = ''
charset utf-8;
source_charset utf-8;
'';
};
virtualHosts."www.clan.lol" = {
forceSSL = true;
enableACME = true;
globalRedirect = "clan.lol";
};
};
}