Fix connection tuning on >= trusty

The tuning config file needs a .conf extension.  Also, trusty
uses mpm_worker_event by default, so support that as well.

Change-Id: Ica3a7ceab29f120a24ca93cc5491f5fe8ce9e54a
This commit is contained in:
James E. Blair 2015-09-08 10:38:00 -07:00
parent 605ec41b30
commit c98efc9c7d
2 changed files with 14 additions and 4 deletions

View File

@ -27,3 +27,13 @@
MaxClients 2048 MaxClients 2048
MaxRequestsPerChild 0 MaxRequestsPerChild 0
</IfModule> </IfModule>
<IfModule mpm_worker_event>
ServerLimit 64
StartServers 3
MinSpareThreads 96
MaxSpareThreads 192
ThreadLimit 64
ThreadsPerChild 32
MaxClients 2048
MaxRequestsPerChild 0
</IfModule>

View File

@ -44,7 +44,7 @@ class etherpad_lite::apache (
notify => Service['httpd'], notify => Service['httpd'],
} }
} else { } else {
file { '/etc/apache2/conf-available/connection-tuning': file { '/etc/apache2/conf-available/connection-tuning.conf':
ensure => present, ensure => present,
owner => 'root', owner => 'root',
group => 'root', group => 'root',
@ -52,11 +52,11 @@ class etherpad_lite::apache (
source => 'puppet:///modules/etherpad_lite/apache-connection-tuning', source => 'puppet:///modules/etherpad_lite/apache-connection-tuning',
} }
file { '/etc/apache2/conf-enabled/connection-tuning': file { '/etc/apache2/conf-enabled/connection-tuning.conf':
ensure => link, ensure => link,
target => '/etc/apache2/conf-available/connection-tuning', target => '/etc/apache2/conf-available/connection-tuning.conf',
notify => Service['httpd'], notify => Service['httpd'],
require => File['/etc/apache2/conf-available/connection-tuning'], require => File['/etc/apache2/conf-available/connection-tuning.conf'],
} }
httpd_mod { 'proxy_wstunnel': httpd_mod { 'proxy_wstunnel':