## /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
##
&lt;Directory /&gt;
    Options FollowSymLinks
    AllowOverride None
&lt;/Directory&gt;

&lt;Directory /var/www/lokal&gt;
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
&lt;/Directory&gt;

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

&lt;IfModule mod_log_config.c&gt;
CustomLog logs/access_log combined env=!VLOG
&lt;/IfModule&gt;

Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15

&lt;IfModule prefork.c&gt;
StartServers         5
MinSpareServers      5
MaxSpareServers     10
MaxClients         150
MaxRequestsPerChild  0
&lt;/IfModule&gt;