Add webserver role

This commit is contained in:
Fabian Hauser 2020-11-24 16:51:33 +00:00
parent dadc992c62
commit 4e531397da
2 changed files with 6 additions and 0 deletions

View file

@ -11,6 +11,7 @@
../../role/base ../../role/base
../../role/dropbear ../../role/dropbear
../../role/webserver
]; ];
# Set your time zone. # Set your time zone.

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
services.nginx = { logError = "stderr warn"; };
}