File: httpd.txt

package info (click to toggle)
selfhtml 8.1.2-1
  • links: PTS
  • area: non-free
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 28,076 kB
  • ctags: 4,161
  • sloc: xml: 614; java: 375; makefile: 8
file content (52 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## /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>