Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Needed modules ? |
|
Author |
|
bagu
Joined: 06 Jan 2011 Posts: 193 Location: France
|
Posted: Mon 28 Aug '17 15:54 Post subject: Needed modules ? |
|
|
Hello,
I use this config, but i don't really know wich are needed :
Code: | LoadModule access_compat_module modules/mod_access_compat.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule allowmethods_module modules/mod_allowmethods.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cloudflare_module modules/mod_cloudflare.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule expires_module modules/mod_expires.so
LoadModule fcgid_module modules/mod_fcgid.so
LoadModule filter_module modules/mod_filter.so
LoadModule http2_module modules/mod_http2.so
LoadModule headers_module modules/mod_headers.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
|
Can you help me to know wich module i can disable (i use vhosts and need alias, rewrite, header and filter)
Thanks in advance |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 28 Aug '17 22:55 Post subject: |
|
|
mod_access_compat.so
Only if you still use Order Allow,Deny instead of require
mod_actions.so
Ony if you need to run cgi scripts
mod_asis.so
99,9% chance that you don't need this module
all the mod_authn* and mod_authz* depend what kind of authentication and authorisation you use.
mod_autoindex.so
Only if people shall be able to browse the directories without and index file. High chance that you don't need this.
mod_cloudflare.so
Only if you are behind cloudflare
mod_include.so
only if you use server side includes. I think 99% chance that you don't need this
LoadModule isapi_module modules/mod_isapi.so
Chances are very high that you don't need this.
mod_vhost_alias.so
Chances are very high that you don't need this module. Read the docs. |
|
Back to top |
|
bagu
Joined: 06 Jan 2011 Posts: 193 Location: France
|
Posted: Tue 29 Aug '17 0:46 Post subject: |
|
|
Thanks for your answer
mod_access_compat.so : I must remove old code to remove it
mod_cloudflare.so : i use it
mod_vhost_alias.so : i use it too
mod_authz* : i need core and host, require seem to don't work without it
But i remove every others : apache performance is far better
Really thanks |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Tue 29 Aug '17 9:36 Post subject: |
|
|
Once you removed mod_access_compat.so is will speed up your apache.
If you disable the use of .htaccess files, but put the config into the vhost settings that should give you the biggest boost ( if you haven't done it already) |
|
Back to top |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Wed 30 Aug '17 6:08 Post subject: |
|
|
good info,I was wondering what module to activate to maintain and run a website.Maybe a tutorial for the novice users ? |
|
Back to top |
|
|
|
|
|
|