diff options
author | sefidel <contact@sefidel.net> | 2024-02-18 02:11:55 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-02-18 02:12:03 +0900 |
commit | bea3daf675c8e75fdd73779d0c5d6a487a3f5bd3 (patch) | |
tree | 9d9ee78d268a004d9266b741ff8cbccf6b7c3e05 /modules | |
parent | 28781b4eb8262f78e5d7f4768d1405bcdf9fa2a5 (diff) | |
download | nixrc-bea3daf675c8e75fdd73779d0c5d6a487a3f5bd3.tar.gz nixrc-bea3daf675c8e75fdd73779d0c5d6a487a3f5bd3.zip |
feat(modules/expose)!: don't use acme certs for cloudflare
Diffstat (limited to 'modules')
-rw-r--r-- | modules/expose.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/expose.nix b/modules/expose.nix index 8f9357d..3598777 100644 --- a/modules/expose.nix +++ b/modules/expose.nix @@ -91,7 +91,7 @@ in } // optionalAttrs (cfg.ssl.enable) { # TODO: This seems to have no effect. Remove? originRequest.originServerName = "*.${cfg.ssl.acmeHost}"; - originRequest.caPool = config.security.acme.certs.${cfg.ssl.acmeHost}.directory; + # originRequest.caPool = config.security.acme.certs.${cfg.ssl.acmeHost}.directory; }; }; } |