~mthaddon/charms/trusty/content-fetcher/trunk

« back to all changes in this revision

Viewing changes to testserver/apache-vhost.txt

  • Committer: Liam Young
  • Date: 2014-03-20 18:45:24 UTC
  • Revision ID: liam.young@canonical.com-20140320184524-yp7oy0issazqfgp1
Fixed up readme and switched archive_url to archive_location because in the case of swift its not a url

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
    <VirtualHost *:80>
 
2
            ServerName {{servername}}
 
3
            ServerAdmin me@myemailaddress.com
 
4
            DocumentRoot /srv/{{servername}}/mywebsite/
 
5
        
 
6
            CustomLog /var/log/apache2/{{servername}}-access.log combined
 
7
            ErrorLog /var/log/apache2/{{servername}}-error.log
 
8
    
 
9
            <Directory /srv/{{servername}}/mywebsite/>
 
10
                    AllowOverride AuthConfig Limit
 
11
                    Options Indexes FollowSymLinks MultiViews
 
12
                    Order allow,deny
 
13
                    Allow from all
 
14
                    AddDefaultCharset UTF-8
 
15
            </Directory>
 
16
    </VirtualHost>