24 lines
450 B
Nix
24 lines
450 B
Nix
{ pkgs, ... }: {
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."185.170.113.195" = {
|
|
listen = [{
|
|
addr = "0.0.0.0";
|
|
port = 80;
|
|
}];
|
|
locations."/" = {
|
|
index = "index.html";
|
|
root = pkgs.writeTextDir "index.html" ''
|
|
<html>
|
|
<body>
|
|
Hello, world!
|
|
</body>
|
|
</html>
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
}
|