diff --git a/HowtoApache.md b/HowtoApache.md index bb5ad064..64d442b2 100644 --- a/HowtoApache.md +++ b/HowtoApache.md @@ -13,25 +13,43 @@ Apache-ITK permet de préciser pour chaque VirtualHost un utilisateur/groupe/Ma ## Configuration de base +Fichiers de configuration : -Activation des modules essentiels : + /etc/apache2/ + |-- apache2.conf + | `-- ports.conf + |-- mods-enabled + | |-- *.load + | `-- *.conf + |-- conf-enabled + | `-- *.conf + `-- sites-enabled + `-- *.conf + + +Activation des modules suivants : ~~~ # a2enmod rewrite expires headers rewrite cgi ~~~ -/etc/apache2/conf-available/zzz_evolix.conf : +Fichier `/etc/apache2/conf-available/z_evolix.conf` : ~~~{.apache} -Timeout 10 -MaxClients 250 ServerTokens Prod +Timeout 10 KeepAliveTimeout 2 MaxKeepAliveRequests 10 +MaxClients 250 +ServerLimit 250 +StartServers 50 +MinSpareServers 20 +MaxSpareServers 30 +MaxRequestsPerChild 0 ~~~ ~~~ -# a2enconf zzz_evolix.conf +# a2enconf z_evolix.conf ~~~ ## SSL