2024-01-25 15:54:05 +00:00
|
|
|
{website, ...}: {
|
|
|
|
networking.firewall.allowedTCPPorts = [80 443];
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
virtualHosts."buffet.sh" = {
|
2024-05-22 06:32:00 +00:00
|
|
|
useACMEHost = "buffet.sh";
|
2024-01-25 15:54:05 +00:00
|
|
|
forceSSL = true;
|
|
|
|
root = "${website}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|