52dfbeccb1
- Migrate tests to python-based runner for newer nixpkgs. - Adaptations for newer nginx module used in tests - Increase memory size for tests
14 lines
519 B
Nix
14 lines
519 B
Nix
{
|
|
services.webserver = { pkgs, lib, ... }: {
|
|
nixos.useSystemd = true;
|
|
nixos.configuration.boot.tmpOnTmpfs = true;
|
|
nixos.configuration.services.nginx.enable = true;
|
|
nixos.configuration.services.nginx.virtualHosts.localhost.root = "${pkgs.nix.doc}/share/doc/nix/manual";
|
|
nixos.configuration.systemd.services.nginx.serviceConfig.AmbientCapabilities =
|
|
lib.mkForce [ "CAP_NET_BIND_SERVICE" ];
|
|
service.useHostStore = true;
|
|
service.ports = [
|
|
"8000:80" # host:container
|
|
];
|
|
};
|
|
}
|