]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5302] Updated paths to the cert files for nginx.
authorMarcin Siodelski <marcin@isc.org>
Thu, 1 Jun 2017 14:35:35 +0000 (16:35 +0200)
committerMarcin Siodelski <marcin@isc.org>
Thu, 1 Jun 2017 14:35:35 +0000 (16:35 +0200)
doc/examples/https/nginx/kea-nginx.conf

index 8ddf9263f64f77af24ec5296292916ae947fb608..3a24fadc491390e8ba7f36cbde5fdb0cfa05cfe8 100644 (file)
@@ -52,11 +52,11 @@ http {
         server_name kea.example.org;
 
         #   Server certificate and key.
-        ssl_certificate kea-proxy.crt;
-        ssl_certificate_key kea-proxy.key;
+        ssl_certificate /path/to/kea-proxy.crt;
+        ssl_certificate_key /path/to/kea-proxy.key;
 
         #   Certificate Authority. Client certificate must be signed by the CA.
-        ssl_client_certificate ca.crt;
+        ssl_client_certificate /path/to/ca.crt;
 
         # Enable verification of the client certificate.
         ssl_verify_client on;