Merge "Add support for running Zuul on Trusty"
This commit is contained in:
commit
c69fe6c62a
@ -347,9 +347,22 @@ class zuul (
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
case $::lsbdistcodename {
|
||||
'precise': {
|
||||
if ! defined(A2mod['mem_cache']) {
|
||||
a2mod { 'mem_cache':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
}
|
||||
default: {
|
||||
if ! defined(A2mod['cache_disk']) {
|
||||
a2mod { 'cache_disk':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -2,6 +2,11 @@
|
||||
ServerAdmin <%= scope.lookupvar("::zuul::serveradmin") %>
|
||||
DocumentRoot /var/lib/zuul/www
|
||||
|
||||
<Directory /var/lib/zuul/www>
|
||||
Allow from all
|
||||
Satisfy Any
|
||||
</Directory>
|
||||
|
||||
ErrorLog ${APACHE_LOG_DIR}/<%= scope.lookupvar("::zuul::vhost_name") %>-error.log
|
||||
|
||||
LogLevel warn
|
||||
@ -32,6 +37,10 @@
|
||||
MCacheMaxObjectSize 8388608
|
||||
MCacheMaxStreamingBuffer 8388608
|
||||
</IfModule>
|
||||
<IfModule mod_cache_disk.c>
|
||||
CacheEnable disk /status.json
|
||||
CacheRoot /var/cache/apache2/mod_cache_disk
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
</VirtualHost>
|
||||
|
Loading…
Reference in New Issue
Block a user