<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GeeK`s Lifez</title>
	<atom:link href="http://blog.cannibalz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cannibalz.net</link>
	<description>GeeK`s Lifez</description>
	<lastBuildDate>Mon, 16 Jan 2012 21:00:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HP Procurve &#8211; Configure NTP</title>
		<link>http://blog.cannibalz.net/2012/01/16/hp-procurve-configure-ntp/</link>
		<comments>http://blog.cannibalz.net/2012/01/16/hp-procurve-configure-ntp/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:00:04 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Procurve]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=201</guid>
		<description><![CDATA[Un petit post rapide sous forme de mémo... Procurve#show time Mon Jan 1 00:04:21 1990 Procurve#configure Procurve#sntp unicast Procurve#sntp server &#60;ip server NTP&#62; Procurve#timesync sntp Procurve#show time Mon Jan 16 10:35:27 2012 Personnellement j'adore les procurve ...]]></description>
			<content:encoded><![CDATA[<p>Un petit post rapide sous forme de mémo...</p>
<blockquote><p>Procurve#show time</p>
<p>Mon Jan 1 00:04:21 1990</p>
<p>Procurve#configure</p>
<p>Procurve#sntp unicast</p>
<p>Procurve#sntp server &lt;ip server NTP&gt;</p>
<p>Procurve#timesync sntp</p>
<p>Procurve#show time</p>
<p>Mon Jan 16 10:35:27 2012</p></blockquote>
<p>Personnellement j'adore les procurve ...</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2012/01/16/hp-procurve-configure-ntp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serveur VPN PPTP linux pour clients windows, iPhone, Android</title>
		<link>http://blog.cannibalz.net/2012/01/02/serveur-vpn-pptp-linux-pour-clients-windows-iphone-android/</link>
		<comments>http://blog.cannibalz.net/2012/01/02/serveur-vpn-pptp-linux-pour-clients-windows-iphone-android/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 21:23:16 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[PPTP]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=188</guid>
		<description><![CDATA[Cédons a la mode du VPN ! Ces derniers temps avec la crise Hadopi &#38; co, la mode est au VPN... et pour cause quoi de plus beau que l'anonymat sur le nain ternet ? Je vais vous expliquer comment mettre en place votre propre VPN pour au choix, être géolocalisé dans un pays différents du votre ? (Streaming?) ou [...]]]></description>
			<content:encoded><![CDATA[<p>Cédons a la mode du VPN !</p>
<p>Ces derniers temps avec la crise Hadopi &amp; co, la mode est au VPN... et pour cause quoi de plus beau que l'anonymat sur le nain ternet ?</p>
<p>Je vais vous expliquer comment mettre en place votre propre VPN pour au choix, être géolocalisé dans un pays différents du votre ? (Streaming?) ou tout simplement pour salir l'ip de votre dédié préféré !</p>
<p>Dans cet exemple nous aurons donc un serveur dedié nommé "serveur" et une machine cliente nommé cliente ! (Cet exemple permet aussi d'utiliser le VPN sur un device de type iPhone ou Android)</p>
<p>Commençons par installer le serveur pptp sur notre serveur debian:</p>
<blockquote><p>serveur#apt-get install pptpd</p></blockquote>
<p>Dans mon cas, je sais que je n'aurai jamais plus d'un client connecté a mon VPN à la fois et je décide de dédier a ce VPN le sous réseau suivant: 10.13.13.0/24</p>
<p>Voici donc le contenu de mon fichier /etc/pptpd.conf:</p>
<blockquote><p>serveur# cat /etc/pptpd.conf | grep -v '^$' |grep -v '^#'<br />
option /etc/ppp/pptpd-options<br />
logwtmp<br />
localip 10.13.13.1<br />
remoteip 10.13.13.2-3</p></blockquote>
<p>Voici le contenu de mon fichier /etc/ppp/pptpd-options:</p>
<blockquote><p>serveur# cat /etc/ppp/pptpd-options | grep -v '^$' |grep -v '^#'<br />
name <strong>NomdeVotre.VPN</strong><br />
refuse-pap<br />
refuse-chap<br />
refuse-mschap<br />
require-mschap-v2<br />
require-mppe-128<br />
ms-dns <strong>8.8.8.8</strong><br />
proxyarp<br />
lock<br />
nobsdcomp<br />
mtu 1490<br />
mru 1490</p></blockquote>
<p>On note le nom de votre VPN ainsi que les DNS publics de google qui seront utilisés par le client VPN</p>
<p>Je souhaite également pouvoir m'authentifier par login / password, pour cela il faut renseigner le fichier /etc/ppp/chap-secrets</p>
<blockquote><p>serveur# cat /etc/ppp/chap-secrets<br />
monlogin <strong>NomdeVotre.VPN</strong>  monpassword *</p></blockquote>
<p>Le quatrième champs peut être utilisé pour faire un restriction par adresse IP cliente.</p>
<p>Coté serveur il ne reste plus qu'a redemarrer le service pptpd:</p>
<blockquote><p># /etc/init.d/pptpd restart</p></blockquote>
<p>Vérifions à l'aide d'un ifconfig -a que le service est bien lancé que l'ip local est bien assignée:</p>
<blockquote><p>server# ifconfig -a ppp0</p>
<p>ppp0 Link encap:Point-to-Point Protocol<br />
inet addr:<strong>10.13.13.1</strong> P-t-P:10.13.13.2 Mask:255.255.255.255<br />
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1396 Metric:1<br />
RX packets:6628 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:11701 errors:0 dropped:0 overruns:0 carrier:0<br />
collisions:0 txqueuelen:3<br />
RX bytes:1123537 (1.0 MiB) TX bytes:8077239 (7.7 MiB)</p></blockquote>
<p>Coté client, il ne reste plus qu'à configurer votre client pptp sous windows, iPhone, ou Android !</p>
<p>Un petit coup de MASQUERADE vous sera tres utile:</p>
<blockquote><p>IPTABLES -t nat -A POSTROUTING -o eth0 -j MASQUERADE</p></blockquote>
<p>Verifier votre <a title="ifconfig.me" href="http://ifconfig.me" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ifconfig.me?referer=');">ip de sortie</a></p>
<p>Sur votre dedié vous pouvez faireu ne ping sur la machine cliente:</p>
<p>serveur</p>
<blockquote><p>serveur# ping 10.13.13.2<br />
PING 10.13.13.2 (10.13.13.2) 56(84) bytes of data.<br />
64 bytes from 10.13.13.2: icmp_req=1 ttl=64 time=97.9 ms<br />
64 bytes from 10.13.13.2: icmp_req=2 ttl=64 time=224 ms<br />
64 bytes from 10.13.13.2: icmp_req=3 ttl=64 time=148 ms</p></blockquote>
<p>P.S: on ne s'affole pas il s'agit du fabuleux réseaux 3g d'orange ...</p>
<p>That's done !!</p>
<div id="attachment_194" class="wp-caption aligncenter" style="width: 210px"><a href="http://blog.cannibalz.net/wp-content/uploads/2012/01/photo.png"><img class="size-medium wp-image-194" title="iPhone VPN" src="http://blog.cannibalz.net/wp-content/uploads/2012/01/photo-200x300.png" alt="iPhone VPN" width="200" height="300" /></a><p class="wp-caption-text">iPhone VPN</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2012/01/02/serveur-vpn-pptp-linux-pour-clients-windows-iphone-android/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>hubiC &#8211; OVH</title>
		<link>http://blog.cannibalz.net/2011/12/29/hubic-ovh-cloud-nas/</link>
		<comments>http://blog.cannibalz.net/2011/12/29/hubic-ovh-cloud-nas/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 09:55:29 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[hubic]]></category>
		<category><![CDATA[OVH]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hier, le 28 Decembre, OVH a lancé son offre "hubiC" de Cloud NAS. D'ordinaire je ne suis que peu interressé par les offre de beta testing, et pourtant cette fois-ci, les 25 Go gratuits m'ont plutôt motivé! Pour creer un compte rien de plus simple il suffit de télécharger l'applicatif adéquat (disponible a l'heure d'aujourd'hui: Android, iPhone, Windows), de le lancer [...]]]></description>
			<content:encoded><![CDATA[<p>Hier, le 28 Decembre, OVH a lancé son offre "<a title="hubiC" href="http://www.ovh.fr/hubiC/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.ovh.fr/hubiC/?referer=');">hubiC</a>" de Cloud NAS.</p>
<p>D'ordinaire je ne suis que peu interressé par les offre de beta testing, et pourtant cette fois-ci, les 25 Go gratuits m'ont plutôt motivé!</p>
<p>Pour creer un compte rien de plus simple il suffit de télécharger l'applicatif adéquat (disponible a l'heure d'aujourd'hui: Android, iPhone, Windows), de le lancer pour s'inscrire:</p>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 218px"><a href="http://blog.cannibalz.net/wp-content/uploads/2011/12/hubic1.jpg"><img class="size-medium wp-image-172" title="hubic1" src="http://blog.cannibalz.net/wp-content/uploads/2011/12/hubic1-208x300.jpg" alt="hubic1" width="208" height="300" /></a><p class="wp-caption-text">hubic1</p></div>
<p>Lors de la face d'inscription un tcpdump montre que nous sommes bien sur du sécurisé avec du httpps a gogo, sur un windows on decouvre une interface QT assez sympa.</p>
<p>Pour le moment je n'ai pas encore prit le temps de lire les CGV, parce que bon, si je dois déposer toutes mes photos sur un compte gratuit pour commencer je réagirai assez mal à sa suppression arbitraire ou autre.</p>
<p>L'interface iPhone est simple mais au moins on s'y retrouve:</p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 210px"><a href="http://blog.cannibalz.net/wp-content/uploads/2011/12/hubic-iphone.png"><img class="size-medium wp-image-173" title="hubic-iphone" src="http://blog.cannibalz.net/wp-content/uploads/2011/12/hubic-iphone-200x300.png" alt="hubic-iphone" width="200" height="300" /></a><p class="wp-caption-text">hubic-iphone</p></div>
<p>&nbsp;</p>
<p>Bref, vivement le client Linux et/ou BSD ? :)</p>
<p>OVH continue de surfer sur la vague du cloud et ils ont bien raisons !</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2011/12/29/hubic-ovh-cloud-nas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract files from tar archive</title>
		<link>http://blog.cannibalz.net/2011/01/15/extract-files-from-tar-archive/</link>
		<comments>http://blog.cannibalz.net/2011/01/15/extract-files-from-tar-archive/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 15:06:42 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=130</guid>
		<description><![CDATA[Just a quick post to indicate how to extract some files from tar.gz archive: For example if you need to extract file/directory named blog from archive arch.tar.gz you can use the following command: tar -zxvf arch.tar.gz directory/where/is/blog You can extract files by using extensions too: tar -xf arch.tar.gz --wildcards --no-anchored '*.php' I hope these commands [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to indicate how to extract some files from tar.gz archive:</p>
<p>For example if you need to extract file/directory named blog from archive arch.tar.gz you can use the following command:</p>
<blockquote><p>tar -zxvf arch.tar.gz directory/where/is/blog</p></blockquote>
<p>You can extract files by using extensions too:</p>
<blockquote><p>tar -xf arch.tar.gz --wildcards --no-anchored '*.php'</p></blockquote>
<p>I hope these commands could help us.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2011/01/15/extract-files-from-tar-archive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reportage censuré de M6 sur Mc Donald</title>
		<link>http://blog.cannibalz.net/2010/10/03/reportage-censure-de-m6-sur-mc-donald/</link>
		<comments>http://blog.cannibalz.net/2010/10/03/reportage-censure-de-m6-sur-mc-donald/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 20:40:56 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Mc Donald]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=113</guid>
		<description><![CDATA[Comme quoi parfois on trouve des videos sympas sur l'hygiene de certains Mc Donald Ci-dessous un reportage tourné par M6 sur le sujet en question (reportage supprimé sur dailymotion a la demande de M6)]]></description>
			<content:encoded><![CDATA[<p>Comme quoi parfois on trouve des videos sympas sur l'hygiene de certains Mc Donald</p>
<p>Ci-dessous un reportage tourné par M6 sur le sujet en question (reportage supprimé sur dailymotion a la demande de M6)</p>
<p><img src="http://blog.cannibalz.net/wp-content/plugins/flash-video-player/default_video_player.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/10/03/reportage-censure-de-m6-sur-mc-donald/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to know the size of Mysql&#8217;s databases</title>
		<link>http://blog.cannibalz.net/2010/10/02/how-to-know-the-size-of-mysqls-databases/</link>
		<comments>http://blog.cannibalz.net/2010/10/02/how-to-know-the-size-of-mysqls-databases/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 16:23:26 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=104</guid>
		<description><![CDATA[This is a little command which permit to know the size of all your mysql's databases: First connect you to your mysql server as root: # mysql - u root -p Then use the following request: mysql&#62; select table_schema as BDD,round(sum(data_length+index_length)/1024/1024,2) as 'Size(MB)' from information_schema.tables group by table_schema; +---------------------+----------+ &#124; BDD         [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little command which permit to know the size of all your mysql's databases:</p>
<p>First connect you to your mysql server as root:</p>
<blockquote><p># mysql - u root -p</p></blockquote>
<p>Then use the following request:</p>
<blockquote>
<div id="_mcePaste">mysql&gt; select table_schema as BDD,round(sum(data_length+index_length)/1024/1024,2) as 'Size(MB)' from information_schema.tables group by table_schema;</div>
<div id="_mcePaste">+---------------------+----------+</div>
<div id="_mcePaste">| BDD                 | Size(MB) |</div>
<div id="_mcePaste">+---------------------+----------+</div>
<div id="_mcePaste">| database1  |    24.88 |</div>
<div id="_mcePaste">| information_schema  |     0.00 |</div>
<div id="_mcePaste">| mysql               |     0.51 |</div>
<div id="_mcePaste">+---------------------+----------+</div>
<div id="_mcePaste">3 rows in set (0.30 sec)</div>
</blockquote>
<div>This command could be usefull when you want to prevent mysql's backup size.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/10/02/how-to-know-the-size-of-mysqls-databases/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Centreon script for Juniper SSG5</title>
		<link>http://blog.cannibalz.net/2010/09/27/centreon-script-for-juniper-ssg5/</link>
		<comments>http://blog.cannibalz.net/2010/09/27/centreon-script-for-juniper-ssg5/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 20:57:19 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Centreon]]></category>
		<category><![CDATA[Juniper]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=94</guid>
		<description><![CDATA[A few times ago i had to realized a centreon script which goal was to draw graph related to VPN use on Juniper SSG5. This script display only traffic on VPN, you can't get state like OK, WARNING, CRITICAL, this script will only print,performance data related to traffic on vpn (like bandwith consumption) You can [...]]]></description>
			<content:encoded><![CDATA[<p>A few times ago i had to realized a centreon script which goal was to draw graph related to VPN use on Juniper SSG5.</p>
<p>This script display only traffic on VPN, you can't get state like OK, WARNING, CRITICAL, this script will only print,performance data related to traffic on vpn (like bandwith consumption)</p>
<p>You can download this script <a href="http://blog.cannibalz.net/wp-content/uploads/2010/09/check_juniper.txt" target="_blank">there</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/09/27/centreon-script-for-juniper-ssg5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create your own Tinyproxy FreeBSD&#8217;s package</title>
		<link>http://blog.cannibalz.net/2010/06/08/create-your-own-tinyproxy-freebsds-package/</link>
		<comments>http://blog.cannibalz.net/2010/06/08/create-your-own-tinyproxy-freebsds-package/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:27:22 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Package]]></category>
		<category><![CDATA[Tinyproxy]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=84</guid>
		<description><![CDATA[In FreeBSD  8.0, tinyproxy's package in stable repository isn't compil with the --enable-transparent-proxy option. This is the reason why, i'll explain how to create a tinyproxy's package including this compilation option. First, edit your /usr/ports/www/tinyproxy/Makefile like the following: # New ports collection makefile for:    tinyproxy # Date created:         01 Jul 1999 # Whom:                 Mitsuru Yoshida [...]]]></description>
			<content:encoded><![CDATA[<p>In FreeBSD  8.0, tinyproxy's package in stable repository isn't compil with the --enable-transparent-proxy option.</p>
<p>This is the reason why, i'll explain how to create a tinyproxy's package including this compilation option.</p>
<p>First, edit your /usr/ports/www/tinyproxy/Makefile like the following:</p>
<blockquote><p># New ports collection makefile for:    tinyproxy<br />
# Date created:         01 Jul 1999<br />
# Whom:                 Mitsuru Yoshida &lt;mitsuru@riken.go.jp&gt;<br />
#<br />
# $FreeBSD: ports/www/tinyproxy/Makefile,v 1.30 2009/10/19 18:41:40 wxs Exp $<br />
#</p>
<p>PORTNAME=       tinyproxy<br />
PORTVERSION=    1.6.5<br />
PORTEPOCH=      1<br />
CATEGORIES=     www<br />
MASTER_SITES=   https://www.banu.com/pub/tinyproxy/1.6/</p>
<p>MAINTAINER=     wxs@FreeBSD.org<br />
COMMENT=        A small, efficient HTTP proxy server</p>
<p>USE_RC_SUBR=    tinyproxy.sh<br />
GNU_CONFIGURE=  yes<br />
USE_GMAKE=      yes<br />
CONFIGURE_ARGS= --bindir=${PREFIX}/sbin \<br />
--with-config=${PREFIX}/etc/tinyproxy.conf \<br />
--program-transform-name=""<br />
MAKE_JOBS_SAFE= yes</p>
<p>MAN8=           tinyproxy.8</p>
<p>OPTIONS=        REVERSE "Enable reverse proxy support" Off \<br />
TRANSPARENT "Enable transparent proxy" Off</p>
<p>.include &lt;bsd.port.pre.mk&gt;</p>
<p>.if defined(WITH_REVERSE)<br />
CONFIGURE_ARGS+=        --enable-reverse<br />
.endif</p>
<p>.if defined(WITH_TRANSPARENT)<br />
CONFIGURE_ARGS+=        --enable-transparent-proxy<br />
.endif</p>
<p>post-patch:<br />
@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure<br />
@${REINPLACE_CMD} -e 's|/etc/tinyproxy/tinyproxy.conf|${PREFIX}/etc/tinyproxy.conf|' \<br />
${WRKSRC}/doc/tinyproxy.8<br />
@${REINPLACE_CMD} -e 's|/usr/share/tinyproxy|${DATADIR}|' \<br />
${WRKSRC}/doc/tinyproxy.conf</p>
<p>post-install:<br />
@if [ ! -f ${PREFIX}/etc/tinyproxy.conf ]; then \<br />
${CP} -p ${PREFIX}/etc/tinyproxy.conf-dist \<br />
${PREFIX}/etc/tinyproxy.conf ; \<br />
fi</p>
<p>.include &lt;bsd.port.post.mk&gt;</p></blockquote>
<p>Be carefull, note that indentation is really important in Makefile!</p>
<p>Now just create the package by using:</p>
<blockquote><p>make package</p></blockquote>
<p>After a few seconds you'll have a pakage store in this path:</p>
<blockquote><p>/usr/ports/packages/All/tinyproxy-1.6.5,1.tbz</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/06/08/create-your-own-tinyproxy-freebsds-package/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Redirection avec Lighttpd</title>
		<link>http://blog.cannibalz.net/2010/05/04/redirection-avec-lighttpd/</link>
		<comments>http://blog.cannibalz.net/2010/05/04/redirection-avec-lighttpd/#comments</comments>
		<pubDate>Tue, 04 May 2010 09:48:59 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[Lighttpd]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=81</guid>
		<description><![CDATA[Récemment j'ai voulu pour les besoin d'un site webs rediriger automatiquement http://domaine.com/ vers http://www.domaine.com/ Pour cela il faut dans un premier temps ajouter le module mod_redirect à Lighttpd (/etc/lighttpd/lighttpd.conf): server.modules = ( "mod_redirect" ) Puis de même pour le nom de domaine concerné rajouter: $HTTP["host"] =~ "^domaine.com$" { url.redirect = ( "^/(.*)" =&#62; "http://www.domaine.com/$1" ) [...]]]></description>
			<content:encoded><![CDATA[<p>Récemment j'ai voulu pour les besoin d'un site webs rediriger automatiquement http://domaine.com/ vers http://www.domaine.com/</p>
<p>Pour cela il faut dans un premier temps ajouter le module mod_redirect à Lighttpd (/etc/lighttpd/lighttpd.conf):</p>
<blockquote><p>server.modules = ( "mod_redirect" )</p></blockquote>
<p>Puis de même pour le nom de domaine concerné rajouter:</p>
<blockquote><p>$HTTP["host"] =~ "^domaine.com$" {<br />
url.redirect = ( "^/(.*)" =&gt; "http://www.domaine.com/$1" )<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/05/04/redirection-avec-lighttpd/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Jailbreak Iphone 3.1.3</title>
		<link>http://blog.cannibalz.net/2010/05/03/jailbreak-iphone-3-1-3/</link>
		<comments>http://blog.cannibalz.net/2010/05/03/jailbreak-iphone-3-1-3/#comments</comments>
		<pubDate>Mon, 03 May 2010 14:39:56 +0000</pubDate>
		<dc:creator>JaCe</dc:creator>
				<category><![CDATA[05.12.01]]></category>
		<category><![CDATA[3.1.3]]></category>
		<category><![CDATA[Jailbreak]]></category>

		<guid isPermaLink="false">http://blog.cannibalz.net/?p=77</guid>
		<description><![CDATA[Ca y'est la dev team nous offre la possibilité de jailbreak les iphone 3.1.3 05.12.01 avec le dernier iboot. Cela prends 10 secondes sans perdre ses données. Ca se passe ici: http://spiritjb.com/ Have fun !]]></description>
			<content:encoded><![CDATA[<p>Ca y'est la dev team nous offre la possibilité de jailbreak les iphone 3.1.3 05.12.01 avec le dernier iboot.</p>
<p>Cela prends 10 secondes sans perdre ses données.</p>
<p>Ca se passe ici: <a href="http://spiritjb.com/" onclick="pageTracker._trackPageview('/outgoing/spiritjb.com/?referer=');">http://spiritjb.com/</a></p>
<p>Have fun !</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cannibalz.net/2010/05/03/jailbreak-iphone-3-1-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

