Skip to content

Commit

Permalink
Fix double .pem file reference instead of .key
Browse files Browse the repository at this point in the history
  • Loading branch information
bhuga committed Sep 16, 2009
1 parent e87421c commit 2c53d27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chef/templates/default/chef_server.conf.erb
Expand Up @@ -17,7 +17,7 @@

SSLEngine On
SSLCertificateFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.pem
SSLCertificateKeyFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.pem
SSLCertificateKeyFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.key
</VirtualHost>

<VirtualHost *:444>
Expand All @@ -39,5 +39,5 @@

SSLEngine On
SSLCertificateFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.pem
SSLCertificateKeyFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.pem
SSLCertificateKeyFile /etc/chef/certificates/<%= @node[:chef][:server_fqdn] %>.key
</VirtualHost>

0 comments on commit 2c53d27

Please sign in to comment.