Add webserver role
This commit is contained in:
parent
dadc992c62
commit
4e531397da
2 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
../../role/base
|
../../role/base
|
||||||
../../role/dropbear
|
../../role/dropbear
|
||||||
|
../../role/webserver
|
||||||
];
|
];
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
|
|
5
role/webserver/default.nix
Normal file
5
role/webserver/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.nginx = { logError = "stderr warn"; };
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue