2014-11-07 09:09:02 +01:00

29 lines
598 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Web\Setup\Webserver;
/**
* Generate apache 2.x (< 2.4) configuration
*/
class Apache2 extends Webserver
{
/**
* @return array
*/
protected function getTemplate()
{
return array(
'Alias {webPath} {publicPath}',
'<directory {publicPath}>',
' Options -Indexes',
' AllowOverride All',
' Order allow,deny',
' Allow from all',
' EnableSendfile Off',
'</directory>'
);
}
}