0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge: nixos/nextcloud: add hint about HSTS to https setting (#345609)

This commit is contained in:
Maximilian Bosch 2025-02-22 21:16:18 +01:00 committed by GitHub
commit f6634090cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -294,7 +294,11 @@ in {
https = mkOption {
type = types.bool;
default = false;
description = "Use HTTPS for generated links.";
description = ''
Use HTTPS for generated links.
Be aware that this also enables HTTP Strict Transport Security (HSTS) headers.
'';
};
package = mkOption {
type = types.package;