mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
23 lines
614 B
Nix
23 lines
614 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
name = "lighttpd";
|
|
meta.maintainers = with lib.maintainers; [ bjornfor ];
|
|
|
|
nodes = {
|
|
server = {
|
|
services.lighttpd.enable = true;
|
|
services.lighttpd.document-root = pkgs.runCommand "document-root" { } ''
|
|
mkdir -p "$out"
|
|
echo "hello nixos test" > "$out/file.txt"
|
|
'';
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
server.wait_for_unit("lighttpd.service")
|
|
res = server.succeed("curl --fail http://localhost/file.txt")
|
|
assert "hello nixos test" in res, f"bad server response: '{res}'"
|
|
server.succeed("systemctl reload lighttpd")
|
|
'';
|
|
}
|