infrastructure/nixos-modules/static-page/test.nix
Fabian Hauser 73bc8b0b22
All checks were successful
CI / build (push) Successful in 2m43s
Add tests documentation to docs page
2025-03-24 22:10:36 +02:00

30 lines
646 B
Nix

{
...
}:
{
nodes.webserver =
{ pkgs, lib, ... }:
let
inherit (pkgs) curl gnugrep;
inherit (lib) mkForce genAttrs const;
in
{
# Setup simple localhost page with an example.com redirect
qois.static-page = {
enable = true;
pages."localhost".domainAliases = [ "example.com" ];
};
# Disable TLS services
services.nginx.virtualHosts = genAttrs [ "localhost" "example.com" ] (const {
forceSSL = mkForce false;
enableACME = mkForce false;
});
# Test environment
environment.systemPackages = [
curl
gnugrep
];
};
}