summary refs log tree commit diff
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorRichard Marko <srk@48.io>2021-02-12 09:12:30 +0100
committerRaphael Megzari <raphael@megzari.com>2021-05-17 18:03:04 +0900
commit7423afb5e46a685b7804327d8b31ef723cadf26b (patch)
treeb9c96159dbac415383954ef79869b966a57032c9 /nixos/modules/services/web-servers
parent29158fc0ac28d3a826b57754552034d8030df199 (diff)
downloadnixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar.gz
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar.bz2
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar.lz
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar.xz
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.tar.zst
nixpkgs-7423afb5e46a685b7804327d8b31ef723cadf26b.zip
nixos/molly-brown: fix description of certPath
`allowKeysForGroup` is no longer available so this drops

```
security.acme.certs."example.com".allowKeysForGroup = true;
```

line. `SupplementaryGroups` should be enough for
allowing access to certificates.
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/molly-brown.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/molly-brown.nix b/nixos/modules/services/web-servers/molly-brown.nix
index e0587f3b471..58db9b9beda 100644
--- a/nixos/modules/services/web-servers/molly-brown.nix
+++ b/nixos/modules/services/web-servers/molly-brown.nix
@@ -41,7 +41,6 @@ in {
 
         As an example:
         <programlisting>
-        security.acme.certs."example.com".allowKeysForGroup = true;
         systemd.services.molly-brown.serviceConfig.SupplementaryGroups =
           [ config.security.acme.certs."example.com".group ];
         </programlisting>