]> git.proxmox.com Git - dab-pve-appliances.git/blob - debian-6.0-wordpress/wordpress.conf
pmg: optionally verify cvd files with sigtool
[dab-pve-appliances.git] / debian-6.0-wordpress / wordpress.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
14 <VirtualHost *:80>
15
16 DocumentRoot /var/www/wordpress
17
18 <Directory />
19 Options FollowSymLinks
20 AllowOverride None
21 </Directory>
22
23 <Directory /var/www/wordpress>
24 Options FollowSymLinks MultiViews
25 AllowOverride None
26 Order allow,deny
27 allow from all
28 </Directory>
29
30 ErrorLog /var/log/apache2/error.log
31
32 # Possible values include: debug, info, notice, warn, error, crit,
33 # alert, emerg.
34 LogLevel warn
35
36 CustomLog /var/log/apache2/access.log combined
37
38 </VirtualHost>