Skip to content

Commit

Permalink
nginx: disable tcpFastOpen in opinionated settings
Browse files Browse the repository at this point in the history
due to cert challenge
  • Loading branch information
SuperSandro2000 committed Dec 16, 2024
1 parent c95f124 commit 78291d7
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 78291d7

Please sign in to comment.