nixos/caddy: fix module docs for new root syntax (#328444)

Old syntax no longer works; `root` now takes two arguments. Updated example in module documentation to reflect this.
This commit is contained in:
Sven Slootweg 2024-07-24 10:38:48 +02:00 committed by GitHub
parent 04d5fc7145
commit 51a72a8271
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -242,7 +242,7 @@ in
serverAliases = [ "www.hydra.example.com" ];
extraConfig = '''
encode gzip
root /srv/http
root * /srv/http
''';
};
};