<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: apache</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Appliquer les changements sur Apache après avoir fait des modifs dans php.ini</title>
        <link>http://www.posteet.com/view/1185</link>
        <description>
        <![CDATA[<pre>service httpd reload</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/bash">[bash]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/php">[php]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>cyo</dc:creator>
        <pubDate>Mon, 11 Aug 2008 09:17:14 +0000</pubDate>

            <category>apache</category>
            <category>bash</category>
            <category>linux</category>
            <category>php</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>Apache mod_deflate (réduire la consommation de bande passante)</title>
        <link>http://www.posteet.com/view/1048</link>
        <description>
        <![CDATA[<pre># Activer le module
a2enmod deflate

# On compresse les types mime suivants (hmtl, texte, xml, css, js)
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript

# Niveau de compression
DeflateCompressionLevel 9

# Règles particulières pour navigateur non compatibles
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# On log pour voir le taux de compression
DeflateFilterNote Input input_info
DeflateFilterNote Output output_info
DeflateFilterNote Ratio ratio_info
LogFormat '&quot;%r&quot; %{output_info}n/%{input_info}n (%{ratio_info}n%%)' deflate
CustomLog /var/log/apache2/deflate_log deflate</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/compression">[compression]</a>  <a href="http://www.posteet.com/tags/deflate">[deflate]</a>  <a href="http://www.posteet.com/tags/gzip">[gzip]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 06 Jul 2008 13:36:11 +0000</pubDate>

            <category>apache</category>
            <category>compression</category>
            <category>deflate</category>
            <category>gzip</category>
    
    </item>

  
    <item>
        <title>Interdire le PHP dans un répertoire avec apache</title>
        <link>http://www.posteet.com/view/1014</link>
        <description>
        <![CDATA[<pre># ajouter la conf suivante dans votre VirtualHost

&lt;Location /upload/&gt;
   AddType text/plain .php .php4 .php5 .phtml .py .pl .cgi .rb
&lt;/Location&gt;</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/php">[php]</a>  <a href="http://www.posteet.com/tags/security">[security]</a>  <a href="http://www.posteet.com/tags/virtualhost">[virtualhost]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Tue, 17 Jun 2008 13:52:30 +0000</pubDate>

            <category>apache</category>
            <category>php</category>
            <category>security</category>
            <category>virtualhost</category>
    
    </item>

  
    <item>
        <title>change the folder index / cambiar el indice de una carpeta</title>
        <link>http://www.posteet.com/view/810</link>
        <description>
        <![CDATA[<pre>DirectoryIndex first_index.html second_index.html third_index.html
#if &quot;first_index.html&quot; does not found apache tries to find the next index (&quot;second_index.html&quot;), if the index lists ends apache
# gives the 404 error.
# sorry for my bad english, it's not my natal languaje

#si &quot;first_index.html&quot; no es encontrado muestra el proximo en la lista (&quot;third_index.html&quot;), si la lista se acaba da error 404</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/error">[error]</a>  <a href="http://www.posteet.com/tags/errores">[errores]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/http">[http]</a>  <a href="http://www.posteet.com/tags/index">[index]</a>  <a href="http://www.posteet.com/tags/indice">[indice]</a> ]]>        </description>
        <dc:creator>eltupper</dc:creator>
        <pubDate>Thu, 06 Mar 2008 17:38:51 +0000</pubDate>

            <category>apache</category>
            <category>error</category>
            <category>errores</category>
            <category>html</category>
            <category>http</category>
            <category>index</category>
            <category>indice</category>
    
    </item>

  
    <item>
        <title>Apache server activity and performance with mod_status</title>
        <link>http://www.posteet.com/view/791</link>
        <description>
        <![CDATA[<pre># uncomment from /etc/apache2/apache2.conf
ExtendedStatus On
&lt;Location /server-status&gt;
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1 .your_domain.com
&lt;/Location&gt;</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/monitoring">[monitoring]</a>  <a href="http://www.posteet.com/tags/performance">[performance]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 24 Feb 2008 20:18:05 +0000</pubDate>

            <category>apache</category>
            <category>monitoring</category>
            <category>performance</category>
    
    </item>

  
    <item>
        <title>Quickly generate a self-signed SSL certificate for Apache</title>
        <link>http://www.posteet.com/view/648</link>
        <description>
        <![CDATA[<pre>openssl req -new -x509 -days 365 -nodes -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/ssl/apache.pem

hint: to generate a wildcard certificate for multiple name-based virtualhosts, use *.domain.tld as the common name.</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/ssl">[ssl]</a> ]]>        </description>
        <dc:creator>skanx</dc:creator>
        <pubDate>Thu, 03 Jan 2008 15:22:21 +0000</pubDate>

            <category>apache</category>
            <category>ssl</category>
    
    </item>

  
    <item>
        <title>Inclusion de fichier automatique en fin de script par htaccess</title>
        <link>http://www.posteet.com/view/452</link>
        <description>
        <![CDATA[<pre>php_value auto_append_file /chemin_vers_ficher_a_inclure/append.php</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/htaccess">[htaccess]</a>  <a href="http://www.posteet.com/tags/php">[php]</a>  <a href="http://www.posteet.com/tags/web">[web]</a> ]]>        </description>
        <dc:creator>xillon</dc:creator>
        <pubDate>Thu, 15 Nov 2007 13:00:59 +0000</pubDate>

            <category>apache</category>
            <category>htaccess</category>
            <category>php</category>
            <category>web</category>
    
    </item>

  
    <item>
        <title>Problèmes avec les caractères accentués dans Apache</title>
        <link>http://www.posteet.com/view/441</link>
        <description>
        <![CDATA[<pre>Dans httpd.conf Mettre :

 AddDefaultCharset off

Mettre en commentaire tous les :

 AddCharset

Mettre fr en premier pour :

 LanguagePriority</pre> <a href="http://www.posteet.com/tags/accents">[accents]</a>  <a href="http://www.posteet.com/tags/apache">[apache]</a> ]]>        </description>
        <dc:creator>skymaxs</dc:creator>
        <pubDate>Thu, 15 Nov 2007 10:07:28 +0000</pubDate>

            <category>accents</category>
            <category>apache</category>
    
    </item>

  
    <item>
        <title>Rotation des logs Apache</title>
        <link>http://www.posteet.com/view/440</link>
        <description>
        <![CDATA[<pre>Faire tourner les logs avec une taille de 1 Mo sous Windows :
ErrorLog &quot;|bin/rotatelogs.exe logs/htdocs-error_log 1M&quot;

Exemple complet :
&lt;VirtualHost *:8080&gt;
    DocumentRoot c:\htdocs
    ErrorLog &quot;|bin/rotatelogs.exe logs/htdocs-error_log 1M&quot;
    CustomLog logs/htdocs-access_log common
&lt;/VirtualHost&gt;</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/log">[log]</a>  <a href="http://www.posteet.com/tags/rotation">[rotation]</a> ]]>        </description>
        <dc:creator>skymaxs</dc:creator>
        <pubDate>Thu, 15 Nov 2007 10:06:05 +0000</pubDate>

            <category>apache</category>
            <category>log</category>
            <category>rotation</category>
    
    </item>

  
    <item>
        <title>Force HTTPS, easily</title>
        <link>http://www.posteet.com/view/8</link>
        <description>
        <![CDATA[<pre>&lt;VirtualHost *:80&gt;
  ServerName www.domain.com
  RewriteEngine On
  RewriteRule ^.*$ https://www.domain.com/ [R,L]
&lt;/VirtualHost&gt;

&lt;VirtualHost *:443&gt;
  ServerName www.domain.com
. . .</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/https">[https]</a>  <a href="http://www.posteet.com/tags/virtualhost">[virtualhost]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 23 Sep 2007 08:12:36 +0000</pubDate>

            <category>apache</category>
            <category>https</category>
            <category>virtualhost</category>
    
    </item>


</channel>
</rss>
