mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
36 lines
667 B
Nix
36 lines
667 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
|
|
name = "dae";
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ oluceps ];
|
|
};
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [ pkgs.curl ];
|
|
services.nginx = {
|
|
enable = true;
|
|
statusPage = true;
|
|
};
|
|
services.dae = {
|
|
enable = true;
|
|
config = ''
|
|
global { disable_waiting_network: true }
|
|
routing{}
|
|
'';
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("nginx.service")
|
|
machine.wait_for_unit("dae.service")
|
|
|
|
machine.wait_for_open_port(80)
|
|
|
|
machine.succeed("curl --fail --max-time 10 http://localhost")
|
|
'';
|
|
|
|
}
|