~hloeung/mojo/charm-testing-influxdb

« back to all changes in this revision

Viewing changes to charm-testing/apache2/templates/vhost-https.tmpl

  • Committer: Jamon Camisso
  • Date: 2017-09-01 18:31:29 UTC
  • mfrom: (55.1.2 charm-testing-apache2)
  • Revision ID: jamon.camisso@canonical.com-20170901183129-1xib6nfn2byyi3ln
[mthaddon,r=jamon] Add a charm testing spec for Apache2 matching what we have for other promulgated charms

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ServerName {{ servername }}
 
2
 
 
3
<VirtualHost *:443>
 
4
    ServerName {{ servername }}
 
5
    DocumentRoot /var/www/html
 
6
 
 
7
    SSLEngine On
 
8
    SSLCertificateFile /etc/ssl/certs/{{ ssl_certlocation }}
 
9
    SSLCertificateKeyFile /etc/ssl/private/{{ ssl_keylocation }}
 
10
    SSLCertificateChainFile /etc/ssl/certs/{{ ssl_chainlocation }}
 
11
 
 
12
</VirtualHost>