diff options
author | T.J. Townsend <tj@cvs.openbsd.org> | 2016-09-17 20:06:00 +0000 |
---|---|---|
committer | T.J. Townsend <tj@cvs.openbsd.org> | 2016-09-17 20:06:00 +0000 |
commit | 72b1565d8b4c9380466a40a16047d4c7eef14f79 (patch) | |
tree | 8fb539e2681a0724780bb38a7ea249a5d44ce15e /etc/examples | |
parent | f1f0e02fd12f0bf63db979851ee6ec47aa876ffb (diff) |
pathnames for cert and key files need to be quoted.
reported by brynet
Diffstat (limited to 'etc/examples')
-rw-r--r-- | etc/examples/httpd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/examples/httpd.conf b/etc/examples/httpd.conf index 9762da590f0..2b5a125f785 100644 --- a/etc/examples/httpd.conf +++ b/etc/examples/httpd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: httpd.conf,v 1.15 2016/09/17 15:04:15 tj Exp $ +# $OpenBSD: httpd.conf,v 1.16 2016/09/17 20:05:59 tj Exp $ # # Macros @@ -50,8 +50,8 @@ server "secure.example.com" { listen on 127.0.0.1 tls port 443 # TLS certificate and key files created with acme-client(1) - tls certificate /etc/ssl/acme/fullchain.pem - tls key /etc/ssl/acme/private/privkey.pem + tls certificate "/etc/ssl/acme/fullchain.pem" + tls key "/etc/ssl/acme/private/privkey.pem" # Define server-specific log files relative to /logs log { access "secure-access.log", error "secure-error.log" } |