Which ApacheModules are really needed ? - BeNe - 02-21-2009 01:20 AM
I´m currently checking all my enabled ApacheModules. I want to speed up the Apache and set some RAM Free with disable some unneeded modules.
Here is a list of my enabled Modules:
Code:
lrwxrwxrwx 1 root root 30 Jan 23 07:35 actions.conf -> ../mods-available/actions.conf
lrwxrwxrwx 1 root root 40 Oct 6 2007 actions.load -> /etc/apache2/mods-available/actions.load
lrwxrwxrwx 1 root root 28 Jan 23 07:35 alias.conf -> ../mods-available/alias.conf
lrwxrwxrwx 1 root root 28 Oct 6 2007 alias.load -> ../mods-available/alias.load
lrwxrwxrwx 1 root root 33 Oct 6 2007 auth_basic.load -> ../mods-available/auth_basic.load
lrwxrwxrwx 1 root root 41 Jan 15 2007 auth_pam.load -> /etc/apache2/mods-available/auth_pam.load
lrwxrwxrwx 1 root root 32 Oct 27 2007 authn_dbd.load -> ../mods-available/authn_dbd.load
lrwxrwxrwx 1 root root 33 Oct 6 2007 authn_file.load -> ../mods-available/authn_file.load
lrwxrwxrwx 1 root root 36 Oct 6 2007 authz_default.load -> ../mods-available/authz_default.load
lrwxrwxrwx 1 root root 38 Oct 6 2007 authz_groupfile.load -> ../mods-available/authz_groupfile.load
lrwxrwxrwx 1 root root 33 Oct 6 2007 authz_host.load -> ../mods-available/authz_host.load
lrwxrwxrwx 1 root root 33 Oct 6 2007 authz_user.load -> ../mods-available/authz_user.load
lrwxrwxrwx 1 root root 32 Jan 23 07:35 autoindex.conf -> ../mods-available/autoindex.conf
lrwxrwxrwx 1 root root 32 Oct 6 2007 autoindex.load -> ../mods-available/autoindex.load
lrwxrwxrwx 1 root root 27 Oct 6 2007 cgid.conf -> ../mods-available/cgid.conf
lrwxrwxrwx 1 root root 27 Oct 6 2007 cgid.load -> ../mods-available/cgid.load
lrwxrwxrwx 1 root root 26 Oct 6 2007 dir.conf -> ../mods-available/dir.conf
lrwxrwxrwx 1 root root 26 Oct 6 2007 dir.load -> ../mods-available/dir.load
lrwxrwxrwx 1 root root 26 Oct 6 2007 env.load -> ../mods-available/env.load
lrwxrwxrwx 1 root root 34 Oct 22 05:53 fcgid_ispcp.conf -> ../mods-available/fcgid_ispcp.conf
lrwxrwxrwx 1 root root 34 Oct 22 05:53 fcgid_ispcp.load -> ../mods-available/fcgid_ispcp.load
lrwxrwxrwx 1 root root 27 Jan 23 07:35 mime.conf -> ../mods-available/mime.conf
lrwxrwxrwx 1 root root 27 Oct 6 2007 mime.load -> ../mods-available/mime.load
lrwxrwxrwx 1 root root 34 Jan 23 07:35 negotiation.conf -> ../mods-available/negotiation.conf
lrwxrwxrwx 1 root root 34 Oct 6 2007 negotiation.load -> ../mods-available/negotiation.load
lrwxrwxrwx 1 root root 37 Jan 15 2007 perl.load -> /etc/apache2/mods-available/perl.load
lrwxrwxrwx 1 root root 28 Oct 24 2007 proxy.conf -> ../mods-available/proxy.conf
lrwxrwxrwx 1 root root 28 Oct 24 2007 proxy.load -> ../mods-available/proxy.load
lrwxrwxrwx 1 root root 33 Oct 24 2007 proxy_http.load -> ../mods-available/proxy_http.load
lrwxrwxrwx 1 root root 30 Oct 24 2007 rewrite.load -> ../mods-available/rewrite.load
lrwxrwxrwx 1 root root 31 Jan 23 07:35 setenvif.conf -> ../mods-available/setenvif.conf
lrwxrwxrwx 1 root root 31 Oct 6 2007 setenvif.load -> ../mods-available/setenvif.load
lrwxrwxrwx 1 root root 26 Oct 25 2007 ssl.conf -> ../mods-available/ssl.conf
lrwxrwxrwx 1 root root 26 Oct 25 2007 ssl.load -> ../mods-available/ssl.load
lrwxrwxrwx 1 root root 29 Oct 24 2007 suexec.load -> ../mods-available/suexec.load
lrwxrwxrwx 1 root root 40 Jan 15 2007 userdir.conf -> /etc/apache2/mods-available/userdir.conf
lrwxrwxrwx 1 root root 40 Jan 15 2007 userdir.load -> /etc/apache2/mods-available/userdir.load
I know that there are many modules enabled that comes per default and must be enabled. Also the ispCP_FastCGI/Proxy and SSL that i enabled. But are _all_ these auth needed by ispCP or a WebApp?
What modules have the most Users here enabled ?
Greez BeNe
RE: Which ApacheModules are really needed ? - tango - 02-21-2009 02:16 AM
admin:/etc/apache2/mods-enabled# ls
actions.conf authz_user.load env.load proxy_http.load
actions.load autoindex.conf fcgid_ispcp.conf proxy.load
alias.conf autoindex.load fcgid_ispcp.load rewrite.load
alias.load cgid.conf mime.conf setenvif.conf
auth_basic.load cgid.load mime.load setenvif.load
authn_file.load deflate.conf mod-security2.load status.conf
authz_default.load deflate.load negotiation.conf status.load
authz_groupfile.load dir.conf negotiation.load suexec.load
authz_host.load dir.load proxy.conf unique_id.load
RE: Which ApacheModules are really needed ? - Cube - 02-21-2009 11:40 PM
I think this is the minimum you need:
actions alias auth_basic authn_file authz_default authz_groupfile authz_host authz_user cgi dir env fastcgi_ispcp mime proxy proxy_http rewrite setenvif ssl suexec
RE: Which ApacheModules are really needed ? - Purple23 - 02-24-2009 10:39 PM
Hi,
I think its rite.
RE: Which ApacheModules are really needed ? - BeNe - 02-24-2009 10:53 PM
Yes, i already disabled some plugins.
We will see ![Wink Wink](images/smilies/wink.gif)
Thanks @ all.
Greez BeNe
RE: Which ApacheModules are really needed ? - Lucan - 02-24-2009 11:19 PM
tango, so you have the default settings, don't you?
Because i have exactly the same mods activated, and i never disabled one.
RE: Which ApacheModules are really needed ? - tango - 02-25-2009 02:05 AM
mod-security2 is not Standard
RE: Which ApacheModules are really needed ? - Lucan - 02-25-2009 03:08 AM
yeah, i know, but the question was what is the minimum of needed mods for apache, so the answer is quite easy, isn't it?
All default mods have to be enabled.
Thats the result of this discussion or am i wrong?
RE: Which ApacheModules are really needed ? - tango - 02-25-2009 04:05 AM
that comes when one of them (like me) can not speak English with google translator works
|