From 8ce39310c59b0a5a07d46ce7086dcc207ab8f417 Mon Sep 17 00:00:00 2001 From: tj <> Date: Sat, 17 Sep 2016 20:05:59 +0000 Subject: [PATCH] pathnames for cert and key files need to be quoted. reported by brynet --- src/etc/examples/httpd.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/etc/examples/httpd.conf b/src/etc/examples/httpd.conf index 9762da59..2b5a125f 100644 --- a/src/etc/examples/httpd.conf +++ b/src/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" }