## following line (default is 8192):
#APACHE_ULIMIT_MAX_FILES='ulimit -n 65536'
+# Can't ulimit inside a vserver, so we avoid noise output at logrotate's cronjob
+APACHE_ULIMIT_MAX_FILES=''
+
## If you would like to pass arguments to the web server, add them below
## to the APACHE_ARGUMENTS environment.
#export APACHE_ARGUMENTS=''
},
}
+ file { '/etc/apache2/envvars' :
+ ensure => present,
+ owner => 'root',
+ group => 'root',
+ mode => '0644',
+ source => $::virtual ? {
+ 'vserver' => 'puppet:///modules/apache/envvars.vserver',
+ default => undef,
+ },
+ notify => Service["apache"],
+ }
+
# Legacy configuration
file { "$conf_d/macros":
ensure => absent,