diff options
-rw-r--r-- | modules/apache/templates/vhost_catalyst_app.conf | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/apache/templates/vhost_catalyst_app.conf b/modules/apache/templates/vhost_catalyst_app.conf index 57867fc4..fcdd9ce1 100644 --- a/modules/apache/templates/vhost_catalyst_app.conf +++ b/modules/apache/templates/vhost_catalyst_app.conf @@ -8,14 +8,12 @@ end <VirtualHost *:<%= port %>> <% if use_ssl then %> SSLEngine on - #TODO deploy SNI later - SSLCertificateFile /etc/ssl/apache/apache.pem - SSLCertificateKeyFile /etc/ssl/apache/apache.pem + SSLCertificateFile /etc/ssl/apache/<%= name %>.pem + SSLCertificateKeyFile /etc/ssl/apache/<%= name %>.pem <% end %> ServerName <%= name %> # Serve static content directly DocumentRoot /dev/null -# header <% if location then %> Alias /static <%= location %>/root/static |