1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 17:46:29 +09:00

Merge pull request #305966 from RafaelKr/doc/fix-common-config-example

doc: remove discouraged enablePHP config from abstractions example
This commit is contained in:
Aaron Andersen 2024-05-04 00:05:37 +00:00 committed by GitHub
commit 4da0f532ba
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -10,14 +10,12 @@ If you find yourself repeating yourself over and over, its time to abstract.
adminAddr = "alice@example.org";
forceSSL = true;
enableACME = true;
enablePHP = true;
};
"wiki.example.org" = {
documentRoot = "/webroot/wiki.example.org";
adminAddr = "alice@example.org";
forceSSL = true;
enableACME = true;
enablePHP = true;
};
};
}