This commit is contained in:
Patrick Neff 2024-04-14 17:28:46 +02:00
parent a8e258e738
commit 94c5951403
1 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,11 @@
{config,lib}: with lib; mkIf config.services.nginx.enable {
{
config,
lib,
...
}:
with lib;
mkIf config.services.nginx.enable {
services.nginx = {
recommendedProxySettings = true;
};
}
}