diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2012-06-24 03:18:39 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2012-06-24 03:18:39 +0000 |
commit | b1469c2c05c7a2d2de6f530a0e25b0ca99be61df (patch) | |
tree | 7a6e29213a8369200f3a8b3f6477b4d87f28790c /usr.sbin | |
parent | b40a6fbc7e43e37f06c0501e5923b31fe04f0b46 (diff) |
Make the default SSL file locations match the ssl(8) man page for
consistency.
ok robert haesbaert henning
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/nginx/conf/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/nginx/conf/nginx.conf b/usr.sbin/nginx/conf/nginx.conf index 0f3fc501016..cf119507f72 100644 --- a/usr.sbin/nginx/conf/nginx.conf +++ b/usr.sbin/nginx/conf/nginx.conf @@ -100,8 +100,8 @@ http { # server_name localhost; # ssl on; - # ssl_certificate cert.pem; - # ssl_certificate_key cert.key; + # ssl_certificate /etc/ssl/server.crt; + # ssl_certificate_key /etc/ssl/private/server.key; # ssl_session_timeout 5m; |