nixosTests.bittorrent: Fix declarative httpd description

This commit is contained in:
Jacek Galowicz 2020-01-14 10:11:57 +01:00
parent 7f69fdd182
commit e1b1f5a484

View file

@ -38,8 +38,12 @@ in
# We need Apache on the tracker to serve the torrents.
services.httpd.enable = true;
services.httpd.adminAddr = "foo@example.org";
services.httpd.documentRoot = "/tmp";
services.httpd.virtualHosts = {
"torrentserver.org" = {
adminAddr = "foo@example.org";
documentRoot = "/tmp";
};
};
networking.firewall.enable = false;