16 lines
288 B
Nix
16 lines
288 B
Nix
{ config, self, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."_" = {
|
|
listen = [
|
|
{ addr = "0.0.0.0"; port = 9000; }
|
|
];
|
|
root = "${self.packages.x86_64-linux.docs}/share/doc";
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 9000 ];
|
|
}
|