aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-23 22:36:04 +0000
committerMichael Scherer <misc@mageia.org>2011-02-23 22:36:04 +0000
commit6640de0ae4187909758abf34630020397ffa326c (patch)
treedae04737b0753ed0aabc85da30597aeff675b600 /modules/apache/templates
parent2dc0efa08baea2040cc61d79b989ef89a89f355a (diff)
downloadpuppet-6640de0ae4187909758abf34630020397ffa326c.tar
puppet-6640de0ae4187909758abf34630020397ffa326c.tar.gz
puppet-6640de0ae4187909758abf34630020397ffa326c.tar.bz2
puppet-6640de0ae4187909758abf34630020397ffa326c.tar.xz
puppet-6640de0ae4187909758abf34630020397ffa326c.zip
- fix location of certificate ( in some specific case like on friteuse )
Diffstat (limited to 'modules/apache/templates')
-rw-r--r--modules/apache/templates/vhost_base.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apache/templates/vhost_base.conf b/modules/apache/templates/vhost_base.conf
index 7d1a0d4e..974fd4f7 100644
--- a/modules/apache/templates/vhost_base.conf
+++ b/modules/apache/templates/vhost_base.conf
@@ -8,8 +8,8 @@ end
<VirtualHost *:<%= port %>>
<%- if use_ssl then -%>
SSLEngine on
- SSLCertificateFile /etc/ssl/apache/<%= name %>.pem
- SSLCertificateKeyFile /etc/ssl/apache/<%= name %>.pem
+ SSLCertificateFile /etc/ssl/apache/<%= real_vhost %>.pem
+ SSLCertificateKeyFile /etc/ssl/apache/<%= real_vhost %>.pem
<%- end -%>
ServerName <%= real_vhost %>
<%- server_aliases.each do |key| -%>