]> git.proxmox.com Git - dab-pve-appliances.git/blob - archive/debian-6.0-drupal/drupal.conf
move older, now EOL releases, to archive folder
[dab-pve-appliances.git] / archive / debian-6.0-drupal / drupal.conf
1 ServerAdmin webmaster@loalhost
2 ServerSignature Off
3 ServerTokens Prod
4
5 <IfModule mpm_prefork_module>
6 StartServers 2
7 MinSpareServers 1
8 MaxSpareServers 2
9 MaxClients 50
10 MaxRequestsPerChild 100
11 </IfModule>
12
13 <VirtualHost *:80>
14
15 DocumentRoot /usr/share/drupal6/
16
17 <Directory />
18 Options FollowSymLinks
19 AllowOverride None
20 </Directory>
21
22
23 <Directory /usr/share/drupal6/>
24 Options +FollowSymLinks
25 AllowOverride All
26 order allow,deny
27 allow from all
28 </Directory>
29
30 Alias /drupal6/ /usr/share/drupal6/
31
32 ErrorLog /var/log/apache2/error.log
33
34 # Possible values include: debug, info, notice, warn, error, crit,
35 # alert, emerg.
36 LogLevel warn
37
38 CustomLog /var/log/apache2/access.log combined
39
40 </VirtualHost>