Skip to content

Commit

Permalink
nginx: disable tcpFastOpen in opinionated settings (#181)
Browse files Browse the repository at this point in the history
due to cert challenge
  • Loading branch information
SuperSandro2000 authored Dec 16, 2024
2 parents c95f124 + 7a12144 commit f11780a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nginx.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ in
includeSubDomains = lib.mkEnableOption "" // { description = "Whether to add `includeSubDomains` to the `Strict-Transport-Security` header"; };
};

tcpFastOpen = libS.mkOpinionatedOption "enable tcp fast open";
tcpFastOpen = lib.mkEnableOption "" // { description = "Whether to configure tcp fast open. This requires configuring useACMEHost for `_` due to limitatons in the nginx config parser"; };

# source https://gist.github.com/danbst/f1e81358d5dd0ba9c763a950e91a25d0
virtualHosts = lib.mkOption {
Expand Down

0 comments on commit f11780a

Please sign in to comment.