From 7168e24200d8dee90ea2a498abf1719c1f6d5a4f Mon Sep 17 00:00:00 2001 From: gcolpart Date: Wed, 5 Oct 2016 00:41:38 +0200 Subject: [PATCH] Ajout d'infos --- HowtoApache.md | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) 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