## /etc/apache2/conf/httpd.conf

## Main Configuration Section
## You really shouldn't change these settings unless you're a guru
##
ServerRoot /usr/lib/apache2
ServerName lokal
LockFile /etc/apache2/apache2.lock
PidFile /var/run/apache2.pid
DocumentRoot /var/www/lokal

## Global Configuration
##
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

<Directory /var/www/lokal>
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

Listen 80

Include conf/modules.d/*.conf
Include conf/module.conf
Include conf/error.conf
Include conf/alias.conf
Include conf/autoindex.conf
Include conf/mime.conf
Include conf/misc.conf
Include conf/virthost.conf

<IfModule mod_log_config.c>
CustomLog logs/access_log combined env=!VLOG
</IfModule>

Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15

<IfModule prefork.c>
StartServers         5
MinSpareServers      5
MaxSpareServers     10
MaxClients         150
MaxRequestsPerChild  0
</IfModule>