So long to "fine" Apache settings
Quote:
Originally Posted by Nassou
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
|
Except you use WebDav - which shouldn't be used:
<LimitExcept GET POST>
Order deny,allow
Deny from all
</LimitExcept>
Will be enough.
Quote:
Originally Posted by Nassou
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
|
If you don't use .htaccess - change AllowOverride to "AllowOverride None"
Quote:
Originally Posted by Nassou
<IfModule mod_suphp.c>
suPHP_Engine On
suPHP_UserGroup webapps webapps
</IfModule>
</Directory>
|
If you don't have a Vhost running - use mod_php or FastCGI instead of suPHP
Quote:
Originally Posted by Nassou
<IfModule dir_module>
DirectoryIndex index.html index.htm index.shtml index.php index.php5 index.php4 index.php3 index.phtml index.cgi
</IfModule>
|
DirectoryIndex index.php
Will be enough for Vbulletin
Quote:
Originally Posted by Nassou
Include conf/extra/httpd-mpm.conf
|
Here are the min / max server settings configured.
Quote:
Originally Posted by Nassou
Include conf/extra/httpd-multilang-errordoc.conf
Include conf/extra/httpd-autoindex.conf
Include conf/extra/httpd-languages.conf
Include conf/extra/httpd-info.conf
Include conf/extra/httpd-vhosts.conf
Include conf/extra/httpd-dav.conf
Include conf/extra/httpd-ssl.conf
Include conf/extra/httpd-deflate.conf
Include conf/extra/directadmin-vhosts.conf
Include conf/extra/httpd-suphp.conf
|
Here some sorting out can be done as well. If you don't use DAV / SSL as example.
And:
Quote:
Originally Posted by Nassou
<Directory />
Options All
AllowOverride All
</Directory>
|
Why is this there ?

Shouldn't it be:
<Directory />
AllowOverride None
Order deny,allow
Deny from all
</Directory>
So far to "fine" Apache settings