diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-07 10:41:12 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-07 10:47:11 +0200 |
commit | 06029fac6a34ef8111ee2f2f07b2118ddb2e1559 (patch) | |
tree | fa4a4b86246d5dd2ed24ac5d6acfb1c45a9ce74e /modules | |
parent | 22b4bd78a10b49272cfd345d379703cae4ab5d3d (diff) | |
download | Nix-06029fac6a34ef8111ee2f2f07b2118ddb2e1559.tar.gz Nix-06029fac6a34ef8111ee2f2f07b2118ddb2e1559.tar.zst Nix-06029fac6a34ef8111ee2f2f07b2118ddb2e1559.zip |
Remove useless certificate chain from apache
Diffstat (limited to 'modules')
-rw-r--r-- | modules/websites/httpd-service-builder.nix | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/websites/httpd-service-builder.nix b/modules/websites/httpd-service-builder.nix index c5f72f9..1f7488d 100644 --- a/modules/websites/httpd-service-builder.nix +++ b/modules/websites/httpd-service-builder.nix | |||
@@ -167,7 +167,6 @@ let | |||
167 | SSLEngine on | 167 | SSLEngine on |
168 | SSLCertificateFile ${sslServerCert} | 168 | SSLCertificateFile ${sslServerCert} |
169 | SSLCertificateKeyFile ${sslServerKey} | 169 | SSLCertificateKeyFile ${sslServerKey} |
170 | ${optionalString (sslServerChain != null) "SSLCertificateChainFile ${sslServerChain}"} | ||
171 | ${optionalString hostOpts.http2 "Protocols h2 h2c http/1.1"} | 170 | ${optionalString hostOpts.http2 "Protocols h2 h2c http/1.1"} |
172 | ${acmeChallenge} | 171 | ${acmeChallenge} |
173 | ${mkVHostCommonConf hostOpts} | 172 | ${mkVHostCommonConf hostOpts} |