<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Linuxaria » Linuxaria – Everything about GNU/Linux and Open source </title>
	
	<link>http://linuxaria.com</link>
	<description>Everything about Linux</description>
	<lastBuildDate>Wed, 16 May 2012 17:28:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Linuxaria_En" /><feedburner:info uri="linuxaria_en" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/2.0/</creativeCommons:license><feedburner:emailServiceId>Linuxaria_En</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to split Varnish log for Virtual host</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/HQXKOxv_ZmM/how-to-split-varnish-log-for-virtual-host</link>
		<comments>http://linuxaria.com/article/how-to-split-varnish-log-for-virtual-host?lang=en#comments</comments>
		<pubDate>Wed, 16 May 2012 17:28:08 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[awstats]]></category>
		<category><![CDATA[disk space]]></category>
		<category><![CDATA[logrotate]]></category>
		<category><![CDATA[memory segment]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[raw logs]]></category>
		<category><![CDATA[Varnish]]></category>
		<category><![CDATA[varnishlog]]></category>
		<category><![CDATA[varnishncsa]]></category>
		<category><![CDATA[virtual host]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5482</guid>
		<description><![CDATA[Varnish is a great tool that accelerates the performance of your site with a simple configuration and a low usage of resources, compared to the result you&#8217;ll get. Just because Varnish is designed and engineered to be fast by default it does not write any log to disk, outrageous you could think &#8230; to be <a href='http://linuxaria.com/article/how-to-split-varnish-log-for-virtual-host?lang=en' class='excerpt-more'>[...]</a>
Related posts:<ol>
<li><a href='http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en' rel='bookmark' title='How to put Varnish in front of your Webserver without doing any change.'>How to put Varnish in front of your Webserver without doing any change.</a></li>
<li><a href='http://linuxaria.com/article/supercharge-wordpress-part-3?lang=en' rel='bookmark' title='Supercharge WordPress, Part 3'>Supercharge WordPress, Part 3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Varnish is a great tool that accelerates the performance of your site with a simple configuration and a low usage of resources, compared to the result you&#8217;ll get. Just because Varnish is designed and engineered to be fast by default it does not write any log to disk, outrageous you could think &#8230; to be honest the logs are available in a memory segment when this memory is filled, Varnish starts from the beginning and overwrites the oldest data in an infinite loop.</p>
<p>So in reality there are logs and they are available for some time, and this solution is much, much faster then logging to a file and it doesn&#8217;t require disk space, but how we can get them on file, possibly divided by virtual host as do Apache or Nginx  ?<br />
<span id="more-5482"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>The first tool that we can use to see the logs is varnishlog, from the<a target="_blank" href="https://www.varnish-cache.org/docs/trunk/tutorial/logging.html"> varnish site</a>:</p>
<blockquote><p>varnishlog is one of the programs you can use to look at what Varnish is logging. Varnishlog gives you the raw logs, everything that is written to the logs. There are other clients as well, we&#8217;ll show you these later.</p>
<p>In the terminal window you started varnish now type varnishlog and press enter.<br />
&#8230;.</p>
<pre>
11 SessionOpen  c 127.0.0.1 58912 0.0.0.0:8080
11 ReqStart     c 127.0.0.1 58912 595005213
11 RxRequest    c GET
11 RxURL        c /
11 RxProtocol   c HTTP/1.1
11 RxHeader     c Host: localhost:8080
11 RxHeader     c Connection: keep-alive
</pre>
<p>The first column is an arbitrary number, it defines the request. Lines with the same number are part of the same HTTP transaction. The second column is the tag of the log message. All log entries are tagged with a tag indicating what sort of activity is being logged. Tags starting with Rx indicate Varnish is recieving data and Tx indicates sending data.</p>
<p>The third column tell us whether this is is data coming or going to the client (c) or to/from the backend (b). The forth column is the data being logged.</p></blockquote>
<p>So varnishlog is an interesting tool for a live session when you want to verify if your varnish is doing what you expect, but not so useful when you want to put the logs into a file.</p>
<p>So let&#8217;s move to Varnishncsa, another varnish tool that can be much more useful for our goal, Varnishncsa display Varnish logs in Apache / NCSA combined log format </p>
<p>The basic usage from the command line is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">varnishncsa <span style="color: #660033;">-a</span> <span style="color: #660033;">-w</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>varnish<span style="color: #000000; font-weight: bold;">/</span>access.log <span style="color: #660033;">-D</span> <span style="color: #660033;">-P</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>run<span style="color: #000000; font-weight: bold;">/</span>varnishncsa.pid</pre></div></div>

<p>-a: To append the logs to an already existing file<br />
-w: To write the logs to the /var/log/varnish/access.log file<br />
-D: To run varnishncsa as a daemon<br />
-P: To write the PID file in the /var/run/ folder</p>
<p>The problem wIth this command is that we&#8217;ll get just 1 access.log file that is good as long as we manage with Varnish just 1 Virtual hosts, but could be not so useful if we want to have 1 file for every Virtual host defined in our Web server.<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>A good solution that I&#8217;ve found in the blog <a target="_blank" href="http://blog.xcir.net/index.php/2012/03/tipsvarnishncsa-save-the-split-log-for-every-host/">blox.xcir.net </a> is to have 1 dedicated daemon for every virtual host and use the flag -m that is used to perform a regex match to the tag’s log entry so if we have 2 virtual host: linuxaria.com and linuxaria.org we could start 2 daemons with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">varnishncsa <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;RxHeader:^Host: linuxaria.com$&quot;</span> <span style="color: #660033;">-a</span> <span style="color: #660033;">-w</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>varnish<span style="color: #000000; font-weight: bold;">/</span>linuxaria.com.access_log <span style="color: #660033;">-D</span>
varnishncsa <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;RxHeader:^Host: linuxaria.org$&quot;</span> <span style="color: #660033;">-a</span> <span style="color: #660033;">-w</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>varnish<span style="color: #000000; font-weight: bold;">/</span>linuxaria.org.access_log <span style="color: #660033;">-D</span></pre></div></div>

<p>And these 2 daemons will generate 2 access_log files with the entry only for these Virtual hosts, now you can use logrotate to rotate the logs every day, just remember to restart the daemon in this case, or statistics software like awstats.</p>
<p>Related posts:<ol>
<li><a href='http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en' rel='bookmark' title='How to put Varnish in front of your Webserver without doing any change.'>How to put Varnish in front of your Webserver without doing any change.</a></li>
<li><a href='http://linuxaria.com/article/supercharge-wordpress-part-3?lang=en' rel='bookmark' title='Supercharge WordPress, Part 3'>Supercharge WordPress, Part 3</a></li>
</ol></p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5482&amp;md5=35fc7eb359826eff36fa4d233eccc41b" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/850UeRlcMBRsBSC-3a30vJQpDG8/0/da"><img src="http://feedads.g.doubleclick.net/~a/850UeRlcMBRsBSC-3a30vJQpDG8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/850UeRlcMBRsBSC-3a30vJQpDG8/1/da"><img src="http://feedads.g.doubleclick.net/~a/850UeRlcMBRsBSC-3a30vJQpDG8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/HQXKOxv_ZmM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/how-to-split-varnish-log-for-virtual-host?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Fhow-to-split-varnish-log-for-virtual-host%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=How+to+split+Varnish+log+for+Virtual+host&amp;description=Varnish+is+a+great+tool+that+accelerates+the+performance+of+your+site+with+a+simple+configuration+and+a+low+usage+of+resources%2C+compared+to+the+result+you%26%238217%3Bll+get.+Just+because...&amp;tags=apache%2Cawstats%2Cdisk+space%2Clogrotate%2Cmemory+segment%2Cnginx%2Craw+logs%2CVarnish%2Cvarnishlog%2Cvarnishncsa%2Cvirtual+host%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/how-to-split-varnish-log-for-virtual-host?lang=en</feedburner:origLink></item>
		<item>
		<title>Changes in the ZorinOS Contest Rules</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/89hwQTn-YN0/changes-in-the-zorinos-contest-rules</link>
		<comments>http://linuxaria.com/pills/changes-in-the-zorinos-contest-rules?lang=en#comments</comments>
		<pubDate>Tue, 15 May 2012 21:21:39 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Pills]]></category>
		<category><![CDATA[concorso]]></category>
		<category><![CDATA[contest rules]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux notes]]></category>
		<category><![CDATA[submissions]]></category>
		<category><![CDATA[zorin]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5478</guid>
		<description><![CDATA[Have you heard about the contest which is currently running for all the Linux lovers, especially for fans of Zorin OS? If you have not heard of it, then you have missed a lot. Zorin OS team, Linuxaria and Linux notes from DarkDuck are giving prizes for the best Linux- or ZorinOS-related stories. The contest was announced on the 6th <a href='http://linuxaria.com/pills/changes-in-the-zorinos-contest-rules?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you heard about the <a target="_blank" href="http://linuxaria.com/article/news/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck?lang=en">contest</a> which is currently running for all the Linux lovers, especially for fans of <a href="http://zorin-os.com/" target="_blank">Zorin OS</a>?</p>
<p>If you have not heard of it, then you have missed a lot.</p>
<p>Zorin OS team, <a target="_blank" href="http://linuxaria.com/" target="_blank">Linuxaria</a> and <a href="http://linuxblog.darkduck.com/" target="_blank">Linux notes from DarkDuck</a> are giving prizes for the best Linux- or ZorinOS-related stories.</p>
<p>The contest was announced on the 6th of May and was planned to run for 2 weeks.</p>
<p>I am happy to announce that the contest has been extended to 1 months for the many submissions we are receiving.</p>
<p>You can submit your stories until the 6th of June, and organizers will decided who gets the prizes on the 8th of June.</p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5478&amp;md5=79e1c6ecaeb9a9137db31541b03df0ef" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/pfKHt_EBnzeUTLoi0vlUy7ByTMs/0/da"><img src="http://feedads.g.doubleclick.net/~a/pfKHt_EBnzeUTLoi0vlUy7ByTMs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pfKHt_EBnzeUTLoi0vlUy7ByTMs/1/da"><img src="http://feedads.g.doubleclick.net/~a/pfKHt_EBnzeUTLoi0vlUy7ByTMs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/89hwQTn-YN0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/pills/changes-in-the-zorinos-contest-rules?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Fpills%2Fchanges-in-the-zorinos-contest-rules%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Changes+in+the+ZorinOS+Contest+Rules&amp;description=Have+you+heard+about+the+contest+which+is+currently+running+for+all+the+Linux+lovers%2C+especially+for+fans+of%C2%A0Zorin+OS%3F+If+you+have+not+heard+of+it%2C+then+you+have...&amp;tags=concorso%2Ccontest+rules%2Clinux%2Clinux+notes%2Csubmissions%2Czorin%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/pills/changes-in-the-zorinos-contest-rules?lang=en</feedburner:origLink></item>
		<item>
		<title>Too many passwords to keep in your mind? Here is a great solution! Cross-platform and portable!</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/99xJEfbHXzI/too-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable</link>
		<comments>http://linuxaria.com/article/too-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable?lang=en#comments</comments>
		<pubDate>Mon, 14 May 2012 22:37:13 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Articoli]]></category>
		<category><![CDATA[Recensioni]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cross platform]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[keepass]]></category>
		<category><![CDATA[keepassx]]></category>
		<category><![CDATA[key manager]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[password manager]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5474</guid>
		<description><![CDATA[Credit cards, SIM cards, social networking sites and forums are just some of the many services that can give us trouble. That&#8217;s right &#8230; Each of these, now, requires passwords and codes that you must keep secrets. I can not remember everything for sure! The only solutions are the ones that we all know. Use <a href='http://linuxaria.com/article/too-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Credit cards, SIM cards, social networking sites and forums are just some of the many services that can give us trouble. That&#8217;s right &#8230; Each of these, now, requires passwords and codes that you must keep secrets. I can not remember everything for sure! The only solutions are the ones that we all know. Use a general password? too risky! An intuitive and memorable password? Unfortunately also too risky! Also writing them all in some paper is not a good idea &#8230; In fact, in addition to being found by others it could even be missed by us! So &#8230; what a beautiful mess!<br />
<span id="more-5474"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
If you too have these problems I have a solution for you! I&#8217;m talking about a software that keeps all your passwords. Not a simple database program, but a real key manager that you can crypt at very high levels and at the same time, very easy to use. I&#8217;m talking about <a target="_blank" href="http://keepass.info/">KeePass</a>. An amazing cross-platform software ! This characteristic makes it one of the best around! This software, in fact, can be really used on any electronic device ! In your office you have a terrible Win98 or Seven, or any other Microsoft product ? No problem &#8230; you can install it through the usual .exe files ! But you can use it also on Linux, just install from your package manager, &#8220;<a target="_blank" href="http://www.keepassx.org/">KeePassX</a>&#8220;, &#8220;KeeDroid&#8221; in your Android, or other versions available for your Mac, Ipad, Iphone, Ipod, Symbian and even in other devices &#8230;<br />
It seems incredible but that&#8217;s it! You can have your passwords wherever you want. With the right precautions to keep updated on all devices your password archive! The best solution to achieve this ?</p>
<p>These are some solutions that you can use:</p>
<p>1) If you have a smartphone, save the file onit. And open it from any PC or laptop simply by connecting the device and running the software from your PC!</p>
<p>2) IMO the best solution is to keep the archive on the clouds, with a good password of course, and choose a service that encrypt the files such as <a target="_blank" href="https://spideroak.com">Spideroak</a>.</p>
<p>The practicality of this software is one of the key features that make it a leader in this field. But also many other interesting features. First it&#8217;s Open source, very intuitive, thanks to the interface translated into many languages ​​and a very simple, very complete, lightweight and, above all, safe structure. Even in the security of its components is king! To access your password you have two choices. A simple &#8220;keyphrase&#8221; or you can combine this with a file. In short, you must either set a password or give to the software the path of a file that will allow the opening of the archive.</p>
<p>Other <strong>features</strong> of KeePassX include:</p>
<p>Extensive management- title for each entry for its better identification</p>
<ul>
<li>possibility to determine different expiration dates</li>
<li>insertion of attachments</li>
<li>user-defined symbols for groups and entries</li>
<li>fast entry dublication</li>
<li>sorting entries in groups</li>
</ul>
<p>Search function</p>
<ul>
<li>search either in specific groups or in complete database</li>
</ul>
<p>Database security</p>
<ul>
<li>access to the KeePassX database is granted either with a password, a key-file (e.g. a CD or a memory-stick) or even both.</li>
</ul>
<p>Automatic generation of secure passwords</p>
<ul>
<li>extremly customizable password generator for fast and easy creation of secure passwords</li>
</ul>
<p>Precaution features</p>
<ul>
<li>quality indicator for chosen passwords</li>
<li>hiding all passwords behind asterisks</li>
</ul>
<p>Encryption- either the Advanced Encryption Standard (AES) or the Twofish algorithm are used</p>
<ul>
<li>encryption of the database in 256 bit sized increments</li>
</ul>
<p>Import and export of entries</p>
<ul>
<li>import from PwManager (*.pwm) and KWallet (*.xml) files- export as textfile (*.txt)</li>
</ul>
<p>Operating system independent</p>
<ul>
<li>KeePassX is cross platform, so are the databases, as well</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>Conclusions</h3>
<p>Well, you&#8217;ve got a software that will allow and will guarantee the absolute safety for the management of the passwords. Now you just need to head to the official page, or store or access your repository and start the download!<br />
And please &#8230; when you open the file make sure not to be under prying eyes! All in all &#8230; yes &#8230; is tested against hacking or bruteforce &#8230; but not from the nosy!</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/x-BwmnS0wko" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed wmode="opaque" src="http://www.youtube.com/v/x-BwmnS0wko" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5474&amp;md5=71cd2330450ca73175f904234bee1cd7" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/TZFzSlvb3Ibfq6o78hs0NzkMQkQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/TZFzSlvb3Ibfq6o78hs0NzkMQkQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TZFzSlvb3Ibfq6o78hs0NzkMQkQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/TZFzSlvb3Ibfq6o78hs0NzkMQkQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/99xJEfbHXzI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/too-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Ftoo-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Too+many+passwords+to+keep+in+your+mind%3F+Here+is+a+great+solution%21+Cross-platform+and+portable%21&amp;description=Credit+cards%2C+SIM+cards%2C+social+networking+sites+and+forums+are+just+some+of+the+many+services+that+can+give+us+trouble.+That%26%238217%3Bs+right+%26%238230%3B+Each+of+these%2C+now%2C+requires+passwords...&amp;tags=android%2Ccross+platform%2CiPhone%2Ckeepass%2Ckeepassx%2Ckey+manager%2Clinux%2Copen+source%2Cpassword%2Cpassword+manager%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/too-many-passwords-to-keep-in-your-mind-here-is-a-great-solution-cross-platform-and-portable?lang=en</feedburner:origLink></item>
		<item>
		<title>My Notes from Open Source System Management Conference 2012</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/-ELr7rSjkq0/my-notes-from-open-source-system-management-conference-2012</link>
		<comments>http://linuxaria.com/article/my-notes-from-open-source-system-management-conference-2012?lang=en#comments</comments>
		<pubDate>Sun, 13 May 2012 18:06:33 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[bolzano italy]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[cmdb]]></category>
		<category><![CDATA[conferenza]]></category>
		<category><![CDATA[evento]]></category>
		<category><![CDATA[icinga]]></category>
		<category><![CDATA[itil]]></category>
		<category><![CDATA[management interface]]></category>
		<category><![CDATA[management tools]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nedi]]></category>
		<category><![CDATA[neteye]]></category>
		<category><![CDATA[nprobe]]></category>
		<category><![CDATA[ocsinventory]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[open source products]]></category>
		<category><![CDATA[shinken]]></category>
		<category><![CDATA[web management]]></category>
		<category><![CDATA[wuerth phoenix]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5465</guid>
		<description><![CDATA[Even this year I was in Bolzano (Italy) for the annual conference organized by Wuerth-Phoenix on Monitoring with Open Source products. I found the conference very interesting, with speakers from around the world that have described several open source products and best practices on monitoring but also on configuration and management tools. A big surprise <a href='http://linuxaria.com/article/my-notes-from-open-source-system-management-conference-2012?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Even this year I was in Bolzano (Italy) for the <a target="_blank" href="http://www.wuerth-phoenix.com/en/company/event/the-agenda/">annual conference</a> organized by Wuerth-Phoenix on Monitoring with Open Source products.</p>
<p>I found the conference very interesting, with speakers from around the world that have described several open source products and best practices on monitoring but also on configuration and management tools. A big surprise for me has been the strong push for alternatives softwares to Nagios for monitoring in particular <a target="_blank" href="http://www.shinken-monitoring.org/">Shinken</a> and <a target="_blank" href="https://www.icinga.org/">Icinga</a> have received many praise.</p>
<p>But before I give some more details about the presentations a few words about the company that has hosted about 400 people in their, free of charge, event, Wuerth-Phoenix manufactures and markets an appliance called <a target="_blank" href="http://www.wuerth-phoenix.com/en/solutions/wuerthphoenix-neteye/">NetEye</a>, within there are many Open source products including:</p>
<p>Nagios Core, with many preinstalled plugins, Cacti, ocsinventory, GLPI, NfSen, Nedi, and DocuWiki the highest level version has also OTRS, all these software are integrated with some web management interface developed by Wuerth-Phoenix itself.<span id="more-5465"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
After the greetings from the organizers the speakers have started with their talks, the slides are <a target="_blank" href="http://www.wuerth-phoenix.com/en/company/event/the-agenda/">already online</a> (compliments!) So if some description of the talks seem interesting, you can take an in-depth on the subjects with the original slides.</p>
<p>These are the talks that have impressed me more:</p>
<h3>First talk:<br />
Olivier Jan, Founder of the French Monitoring Community (F)</h3>
<p>One of the most interesting talks in my opinion, Olivier has presented the tools that he thought might be the future of monitoring, the first consideration is that the cloud is increasing exponentially the number of hosts and services to monitor which thus requires a scalable monitoring solution, he sees two possible solutions for this problem:</p>
<p>Icinga installed with Mod_gearman an event broker (this also works with Nagios) that allow to scale horizontally the number of servers running the check, while maintaining a single central server management.</p>
<p>Or an alternative software created to make this task: Shinken, this software is born a few years ago with the idea to make a monitoring solution compatible with the cloud, with distinct elements that can be replicated and multiply, and so is possible to raise the number of checks really easily and without any loss in performance.</p>
<p>After that Olivier has talked about monitoring the end user experience, so not just the state of single ICT servers but browsing a complete website and check some outputs, the suggested tools for this tasks are:</p>
<p><a href="http://cdn.linuxaria.com/wp-content/uploads/2012/05/cucumber.png?9d7bd4" rel="lightbox[5465]"><img class="alignright size-full wp-image-5467" title="cucumber" src="http://cdn.linuxaria.com/wp-content/uploads/2012/05/cucumber.png?9d7bd4" alt="cucumber" width="300" height="156" /></a></p>
<p>Cucumber<br />
Watir Webdriver<br />
Sikuli</p>
<p>I never heard of these software, so I must definitely study them, thanks Olivier.</p>
<p>Another interesting aspect of his talk has been regarding the managment of the logs, for this task Olivier suggest 2 tools:</p>
<p>1<a target="_blank" href="http://logstash.net/">Logstash</a></p>
<p>This is a tool for managing events and logs. You can use it to collect logs, parse them, and store them for later use (like, for searching). Speaking of searching, logstash comes with a web interface for searching and drilling into all of your logs.</p>
<p>Some of the features are:</p>
<ul>
<li>Various inputs (AMQP, Syslog, TCP, XMPP, file, Twitter&#8230;)</li>
<li>Filters and rewrites (date, grep, gelfify, grok&#8230;)</li>
<li>Various outputs (AMQP, websockets, Nagios, XMPP, MongoDB&#8230;)</li>
<li>Can act as a collection daemon, transport agent as well as a pre or post log filter</li>
</ul>
<p>2 <a target="_blank" href="http://graylog2.org">graylog2</a></p>
<p>Graylog2 is an open source log management solution that stores your logs in <a target="_blank" href="http://www.elasticsearch.org/">ElasticSearch</a>. It consists of a server written in Java that accepts your syslog messages via TCP, UDP or AMQP and stores it in the database. The second part is a web interface that allows you to manage the log messages from your web browser.</p>
<p>Features:</p>
<ul>
<li>Syslog daemon with extended possibilities (AMQP, GELF&#8230;)</li>
<li>Web interface to interact in real-time with logs</li>
<li>Elastic Search backend</li>
<li>MongoDB for prefs</li>
<li>Streams</li>
<li>Blacklists</li>
<li>Alerts (mail, Nagios)</li>
</ul>
<p><a href="http://cdn.linuxaria.com/wp-content/uploads/2012/05/gray2log.png?9d7bd4" rel="lightbox[5465]"><img class="aligncenter size-full wp-image-5469" title="gray2log" src="http://cdn.linuxaria.com/wp-content/uploads/2012/05/gray2log.png?9d7bd4" alt="gray2log" width="600" height="345" /></a></p>
<p>These are some of the things i liked more but Olivier has talked also of other interesting software, check his slides for more info.</p>
<h3>Second talk<br />
Jeffrey Hammond, Principal Analyst Forrester Research (US)</h3>
<p>Before the start I was thinking that a talk from an analyst would be really boring&#8230;i could not be more wrong !<br />
Jeffrey has illustrated some interesting information on the adoption of Open source on big company, tracing in the 2009 the year when OS has &#8220;crossed the chasm&#8221;, becoming the most important part of the software in most of the biggest company.<br />
A number that i remember is that 80% of the company use OS software in some of their phases (development, testing, desktop, server, etc.)</p>
<p>After this first information he has applied his analyst experience on evaluating some open source monitoring tools, taking in counts things like: number of developers, number of commit per month, how the code is commented, user rating and other aspects.<br />
He has presented these information for the most famous monitoring software tools, and to make it short:</p>
<p>OS monitoring software on the raise: Cacti, Shinkend and Icinga<br />
OS monitoring software going down : Zenoss, Hyperic HQ and Groundwork</p>
<p>As usual check his slides for more information.</p>
<h3>Third talk:<br />
Bernd Erk, Managing Director NETWAYS GmbH (GER)</h3>
<p>This has been another great talk with the presentation of many interesting Open source software, the only bad thing for Bernd is that some of the software were also present in the first talk of the day.</p>
<p>Erk has presented the software starting from the ITIL Lifecycle, so presenting different Open Source software for any phase:</p>
<p><a href="http://cdn.linuxaria.com/wp-content/uploads/2012/05/cycle.png?9d7bd4" rel="lightbox[5465]"><img class="aligncenter size-full wp-image-5471" title="cycle" src="http://cdn.linuxaria.com/wp-content/uploads/2012/05/cycle.png?9d7bd4" alt="cycle" width="450" height="393" /></a></p>
<p>This is the list of software suggested for every phase:</p>
<p><strong>Capacity Management &#8211; Tools<br />
</strong><br />
Independent Tools</p>
<ul>
<li>Cacti</li>
<li>Munin</li>
<li>Graphite</li>
</ul>
<p>• Nagios/Icinga Addons</p>
<ul>
<li>PNP4Nagios</li>
<li>inGraph</li>
</ul>
<p>Of these i want to take a look at <a target="_blank" href="www.netways.org/projects/ingraph ">ingraph</a> a software developed by netways.org</p>
<p><strong>Availability Management &#8211; Tools<br />
</strong></p>
<p>Business Process addon for icinga/Nagios</p>
<p><strong>Deployment Management Tool<br />
</strong><br />
Puppet</p>
<p><strong>Incident Management Tool<br />
</strong><br />
Request Tracker by BestPractical</p>
<p><strong>Problem management Tools</strong></p>
<ul>
<li>Jasper</li>
<li>Pentaho</li>
<li>Birt</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Personally I must say that these 3 were the presentations that impressed me the most, perhaps because i knew very well some of the things in other talks, or I&#8217;ve already seen them in other events.</p>
<p>I advise you to look also at the slides of the talks:</p>
<h3>Luca Deri, Founder ntop (I)<br />
Getting more Information on your Network Performance</h3>
<p>Talk where he presented the <a target="_blank" href="http://www.ntop.org/products/ndpi/">new tools for the Deep Packet Inspection</a> (DPI) developed by him and his team and integrated into an appliance that can be used to monitor application-level flows used by users of a network.</p>
<h3>Jimmy Conner, Cacti Plugin Architecture (US)<br />
10 Year of Cacti &#8211; The latest Evolution of the new Plugins</h3>
<p>In this talk Jimmy has presented the status for the <a target="_blank" href="http://www.cacti.net/">Cacti</a> project and some of the most commonly used plugins.</p>
<h3>Michael Schwartzkopff, Consultant for high availability systems and network management (SWI)<br />
Network Discovery with NeDi</h3>
<p>A speech dedicated to the product <a target="_blank" href="http://www.nedi.ch/">NEDI</a>, an open source software that can do the scan of the whole network, gather information about our equipment and report changes in the state of the network.</p>
<h3> Conclusions </h3>
<p>It&#8217;s been a great event, my compliments to all the speakers and to Wuerth-Phoenix for the organization, there were around 400 people following the talks, and I&#8217;ve enjoyed talking with them at the lunch, i hope to see you next year.</p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5465&amp;md5=291116fa2cb3221e15ec93a58f7be5b6" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/bilEo_DQPaArTrqFCPepyyLIT1g/0/da"><img src="http://feedads.g.doubleclick.net/~a/bilEo_DQPaArTrqFCPepyyLIT1g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bilEo_DQPaArTrqFCPepyyLIT1g/1/da"><img src="http://feedads.g.doubleclick.net/~a/bilEo_DQPaArTrqFCPepyyLIT1g/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/-ELr7rSjkq0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/my-notes-from-open-source-system-management-conference-2012?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Fmy-notes-from-open-source-system-management-conference-2012%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=My+Notes+from+Open+Source+System+Management+Conference+2012&amp;description=Even+this+year+I+was+in+Bolzano+%28Italy%29+for+the+annual+conference+organized+by+Wuerth-Phoenix+on+Monitoring+with+Open+Source+products.+I+found+the+conference+very+interesting%2C+with+speakers+from...&amp;tags=best+practices%2Cbolzano+italy%2Ccacti%2Ccmdb%2Cconferenza%2Cevento%2Cicinga%2Citil%2Cmanagement+interface%2Cmanagement+tools%2Cnagios%2Cnedi%2Cneteye%2Cnprobe%2Cocsinventory%2Copen+source%2Copen+source+products%2Cshinken%2Cweb+management%2Cwuerth+phoenix%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/my-notes-from-open-source-system-management-conference-2012?lang=en</feedburner:origLink></item>
		<item>
		<title>Video game lovers listen ! Ubuntu is going to give you some unexpected emotions!</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/eNyBJ9jvrZE/video-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions</link>
		<comments>http://linuxaria.com/article/video-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions?lang=en#comments</comments>
		<pubDate>Fri, 11 May 2012 21:50:33 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Articoli]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ea]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux box]]></category>
		<category><![CDATA[linux distributions]]></category>
		<category><![CDATA[linux users]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[penguin]]></category>
		<category><![CDATA[penguin games]]></category>
		<category><![CDATA[steam]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5459</guid>
		<description><![CDATA[Article by Giuseppe Sanna We all know and love Linux and its distributions. Operating Systems that are lightweight, fast, highly customizable, free, advanced &#8230; These are just some of the thousands of qualities that our OS Linux have! But as we are also humble users and Linux users &#8230; not cocky, we recognize the limits <a href='http://linuxaria.com/article/video-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions?lang=en' class='excerpt-more'>[...]</a>
Related posts:<ol>
<li><a href='http://linuxaria.com/article/game-editor-linux?lang=en' rel='bookmark' title='Game Editor to create your game, on Linux'>Game Editor to create your game, on Linux</a></li>
<li><a href='http://linuxaria.com/recensioni/4-proprietary-game-from-ubuntu-software-center?lang=en' rel='bookmark' title='4 Proprietary game from Ubuntu software center'>4 Proprietary game from Ubuntu software center</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Article by Giuseppe Sanna</p>
<p>We all know and love Linux and its distributions. Operating Systems that are lightweight, fast, highly customizable, free, advanced &#8230; These are just some of the thousands of qualities that our OS Linux have! But as we are also humble users and Linux users &#8230; not cocky, we recognize the limits of our sweet penguin, there is a cons we have to remember that this operating system gives to us! Perhaps this is the only &#8230; A penalty that surely does not affect all, me for first ! On our beloved Linux Box, in fact, is really difficult to find games with appealing graphics. Maybe you can find some games, but not one of the highest successful video games like GTA, NFS and so on &#8230;</p>
<p>At least so far&#8230;<br />
<span id="more-5459"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
All of you who use Linux and love video games are about to discover something amazing &#8230;<br />
That&#8217;s right! As you may have guessed from the title, some titles of respect are going to get in our machines! Just for some time, in fact, some famous  video games producer are starting to notice the huge success of Linux distributions and, as a smart-for-profit corporations they are beginning to direct their thinking towards the scenario of the penguin games! Maybe a few days ago all this would seem a mere myth. But not today &#8230;</p>
<p>And in fact recently has been announced by two important games producer to release in a future not so far, a few titles of their works for our Linux Box!<br />
Not everything is as abstract as some think &#8230; Indeed it would seem that the two houses, Steam and EA, have even announced the names of some video games. In the WEB In fact, it seems even possible to retrieve a screenshot of &#8220;Left4Dead&#8221; running on Ubuntu. If Steam has made ​​his move, EA has made a &#8220;Raise&#8221;! <a target="_blank" href="http://www.jonobacon.org/2012/05/08/ea-games-and-ubuntu/">Jono Bacon</a>, in fact, reported in his blog that Command &#038; Conquer Tiberium Alliances and Lord of Ultima are about to come in the increasingly used world of Ubuntu.<br />
Another thing near certainty is that these software, unlike the video games for Windows and Mac versions will not be available as box version but only on online store. In this case in the Ubuntu Software Center. Perhaps some will not be happy of this distribution, but if you think at this a bit further you can explore the possibility of having lower prices than the versions for other OS! After all, if you think about it, the videogame producer would save cash on paper and on DVD!<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Also we can say goodbye to optical drives ruined by time and not only!<br />
Unfortunately, talking about prices in the same article where I mention Ubuntu disturbs me and surely many of you I bet. But all in all we must also think about, Linux lover, that are willing to pay to buy the games. Of course, these users leave much to be desired in the philosophy of strictly &#8220;Open Source&#8221;, but we must also understand that it is difficult to repress a passion!</p>
<p>However, criticism or not, I, as a not gamer, I&#8217;m really curious to follow this story. A story that will surely be very exciting. Of course, we are just starting &#8230; but who knows how this will evolve!</p>
<p>Related posts:<ol>
<li><a href='http://linuxaria.com/article/game-editor-linux?lang=en' rel='bookmark' title='Game Editor to create your game, on Linux'>Game Editor to create your game, on Linux</a></li>
<li><a href='http://linuxaria.com/recensioni/4-proprietary-game-from-ubuntu-software-center?lang=en' rel='bookmark' title='4 Proprietary game from Ubuntu software center'>4 Proprietary game from Ubuntu software center</a></li>
</ol></p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5459&amp;md5=df92d5bf1f761734ab9ca8bbc2c0569a" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ii0JtMWe97KJy6OIMliLLABqJlY/0/da"><img src="http://feedads.g.doubleclick.net/~a/ii0JtMWe97KJy6OIMliLLABqJlY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ii0JtMWe97KJy6OIMliLLABqJlY/1/da"><img src="http://feedads.g.doubleclick.net/~a/ii0JtMWe97KJy6OIMliLLABqJlY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/eNyBJ9jvrZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/video-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Fvideo-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Video+game+lovers+listen+%21+Ubuntu+is+going+to+give+you+some+unexpected+emotions%21&amp;description=Article+by+Giuseppe+Sanna+We+all+know+and+love+Linux+and+its+distributions.+Operating+Systems+that+are+lightweight%2C+fast%2C+highly+customizable%2C+free%2C+advanced+%26%238230%3B+These+are+just+some+of+the...&amp;tags=ea%2Cgames%2Clinux%2Clinux+box%2Clinux+distributions%2Clinux+users%2Coperating+systems%2Cpenguin%2Cpenguin+games%2Csteam%2Cvideo+games%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/video-game-lovers-listen-ubuntu-is-going-to-give-you-some-unexpected-emotions?lang=en</feedburner:origLink></item>
		<item>
		<title>Suicide Linux : The final test for your interview</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/hb3cWrfT0Qw/suicide-linux-the-final-test-for-your-interview</link>
		<comments>http://linuxaria.com/pills/suicide-linux-the-final-test-for-your-interview?lang=en#comments</comments>
		<pubDate>Mon, 07 May 2012 21:29:04 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Pillole]]></category>
		<category><![CDATA[final test]]></category>
		<category><![CDATA[first error]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[suicide]]></category>
		<category><![CDATA[Virtual machine]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5019</guid>
		<description><![CDATA[I accidentally discovered this package for debian, very trivial but brilliant in its simplicity: at the first error done on the command line it performs a rm -rf / , so it try to delete the drive completely, this package is called Suicide Linux, and you should absolutely not install it on your machine. To <a href='http://linuxaria.com/pills/suicide-linux-the-final-test-for-your-interview?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I accidentally discovered this <a target="_blank" href="http://qntm.org/suicide"> package </a> for debian, very trivial but brilliant in its simplicity: at the first error done on the command line it performs a <code> rm -rf / </code>, so it try to delete the drive completely, this package is called Suicide Linux, and you should absolutely not install it on your machine.</p>
<p>To test this you can use an expendable virtual machine .<br />
<span id="more-5019"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Why would you ever want to install Suicide Linux on your box ? Well, it&#8217;s certainly not practical, but it makes more sense as a test than as an actual operating system, I&#8217;ve thought at it could be a final test for an interview for System Administrators:</p>
<p>- Hello Mr. Thomas Anderson, please do a dump of the Mysql running on this machine, zip it on a file and than move it with netcat on this remote machine&#8230;. ah on this machine there is Sucide Linux so you cannot do mistakes.</p>
<p>I think that could be interesting to see where our candidates would arrives before they wipe out the whole disk&#8230;</p>
<p>Have Fun !!</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Q_pgnMWgd34" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed wmode="opaque" src="http://www.youtube.com/v/Q_pgnMWgd34" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5019&amp;md5=f6e89c424b1dfd912961846f4e352208" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/VQAzbYjYJHTTBPuaZY3F8ktjfTE/0/da"><img src="http://feedads.g.doubleclick.net/~a/VQAzbYjYJHTTBPuaZY3F8ktjfTE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VQAzbYjYJHTTBPuaZY3F8ktjfTE/1/da"><img src="http://feedads.g.doubleclick.net/~a/VQAzbYjYJHTTBPuaZY3F8ktjfTE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/hb3cWrfT0Qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/pills/suicide-linux-the-final-test-for-your-interview?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Fpills%2Fsuicide-linux-the-final-test-for-your-interview%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Suicide+Linux+%3A+The+final+test+for+your+interview&amp;description=I+accidentally+discovered+this+package+for+debian%2C+very+trivial+but+brilliant+in+its+simplicity%3A+at+the+first+error+done+on+the+command+line+it+performs+a+rm+-rf+%2F+%2C...&amp;tags=final+test%2Cfirst+error%2Clinux%2Csuicide%2CVirtual+machine%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/pills/suicide-linux-the-final-test-for-your-interview?lang=en</feedburner:origLink></item>
		<item>
		<title>The Joint Contest of Zorin OS, Linuxaria and Linux notes from DarkDuck</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/5YSU8R1NJJM/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck</link>
		<comments>http://linuxaria.com/article/news/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck?lang=en#comments</comments>
		<pubDate>Sun, 06 May 2012 22:13:15 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[dark duck]]></category>
		<category><![CDATA[linuxaria]]></category>
		<category><![CDATA[zorin]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5453</guid>
		<description><![CDATA[With Zorin OS next release not far away, I am happy to announce a special contest. This contest is organised together by Zorin OS team, Linuxaria, Linux notes from DarkDuck and Buy Linux CDs. Who can participate? Everyone with a passion for Linux, and with some writing skills. If you&#8217;re good enough to compose a short e-mail <a href='http://linuxaria.com/article/news/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>With <a target="_blank" href="http://linuxblog.darkduck.com/2012/04/artyom-zorin-on-zorin-os-gateway-to.html">Zorin OS next release not far away</a>, I am happy to announce a special contest.</p>
<p>This contest is organised together by <a target="_blank" href="http://zorin-os.com/"> Zorin OS</a> team, <a target="_blank" href="http://linuxaria.com/">Linuxaria</a>, <a href="http://linuxblog.darkduck.com/">Linux notes from DarkDuck</a> and <a target="_blank" href="http://buylinuxcds.co.uk/">Buy Linux CDs</a>.</p>
<h2>Who can participate?</h2>
<p>Everyone with a passion for Linux, and with some writing skills. If you&#8217;re good enough to compose a short e-mail to your friend, then you&#8217;re ready for the contest.</p>
<h2>What you need to do?</h2>
<p>Please write a short story about Zorin OS, or maybe just Linux in general.</p>
<p>Why do you use Linux? How did you come to the Linux world? What do you like here? What are you doing to promote Linux? Any of these, or maybe your own themes are good.</p>
<p>It would be better, if your post is about Zorin OS, but this is just &#8220;nice to have&#8221;.<br />
<span id="more-5453"></span></p>
<p>The text you&#8217;re going to write should not be one-liner. Please be little bit more productive. At least 50 words, if you don&#8217;t mind.</p>
<h2>Where to send your works?</h2>
<p>Please e-mail them to <a target="_blank" href="mailto:zorinos.contest@darkduck.com">zorinos.contest@darkduck.com</a>.</p>
<h2>When to send?</h2>
<p>Any time until the 6 of june 2012.</p>
<h2>What will you get?</h2>
<p>Organizers of the contest will select winners, and they will receive:</p>
<ol>
<li>Disk with Zorin OS 6 Premium with all the attached support. Prize is given by <a target="_blank" href="http://www.zorin-os.com/">Zorin OS</a> team.</li>
<li>15 USD bonus at Desura or similar resource, as per your agreement with <a target="_blank" href="http://www.linuxaria.com/">Linuxaria</a>, who has given this prize.</li>
<li>10 GBP e-voucher for Amazon.co.uk site. Prize from <a target="_blank" href="http://buylinuxcds.co.uk/">Buy Linux CDs</a>.</li>
<li>CD with any Linux distribution of your choice. Prize from <a target="_blank" href="http://linuxblog.darkduck.com/">Linux notes from DarkDuck</a>.</li>
<li>1 GB USB stick. Prize from <a target="_blank" href="http://linuxblog.darkduck.com/">Linux notes from DarkDuck</a>.</li>
</ol>
<p>&nbsp;</p>
<h2>Will my work be published?</h2>
<p>By submitting your work, you allow organizers to use your work on their web sites, unless you specifically withdraw your permission in writing.</p>
<h2>When will results be announced?</h2>
<p>The results will be announced on the 8 of june 2012.<br />
The winners will be contacted by e-mail.</p>
<h3>Small print:</h3>
<p>&nbsp;</p>
<ol>
<li>One prize per contestant.</li>
<li>Decisions of contest organizers are binding, and cannot be changed.</li>
<li>Non-monetary prizes cannot be exchanged for money.</li>
<li>No cash equivalents.</li>
<li>Monetary prizes will be given in currency stated: 15 USD and 10 GBP correspondingly.</li>
<li>In order to get non-monetary prizes, you must provide your postal address. This will be kept confidential and never disclosed to 3rd parties.</li>
<li>Winners must respond the requests within 14 calendar days. If there is no response, the prize will be withheld.</li>
</ol>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5453&amp;md5=ac4bdb74764987f5e3bd30bd40300ebe" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/lnPpVV6GQky0-JyY7gtOnq2Ij9Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/lnPpVV6GQky0-JyY7gtOnq2Ij9Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lnPpVV6GQky0-JyY7gtOnq2Ij9Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/lnPpVV6GQky0-JyY7gtOnq2Ij9Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/5YSU8R1NJJM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/news/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Fnews%2Fthe-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=The+Joint+Contest+of+Zorin+OS%2C+Linuxaria+and+Linux+notes+from+DarkDuck&amp;description=With+Zorin+OS+next+release+not+far+away%2C+I+am+happy+to+announce+a+special+contest.+This+contest+is+organised+together+by+Zorin+OS%C2%A0team%2C+Linuxaria%2C+Linux+notes+from+DarkDuck%C2%A0and+Buy...&amp;tags=contest%2Cdark+duck%2Clinuxaria%2Czorin%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/news/the-joint-contest-of-zorin-os-linuxaria-and-linux-notes-from-darkduck?lang=en</feedburner:origLink></item>
		<item>
		<title>Tips and Tricks for Nginx</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/F_Sbn65tZu4/tips-and-tricks-for-nginx</link>
		<comments>http://linuxaria.com/article/tips-and-tricks-for-nginx?lang=en#comments</comments>
		<pubDate>Sat, 05 May 2012 17:27:25 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Articoli]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php5-fpm]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5449</guid>
		<description><![CDATA[Nginx is an emerging Web server (it claims to power around 12% of the website) and is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption. Personally I&#8217;m using it from 2010 and so far so good, no particular problems, it does perfectly his work and is frequently updated <a href='http://linuxaria.com/article/tips-and-tricks-for-nginx?lang=en' class='excerpt-more'>[...]</a>
Related posts:<ol>
<li><a href='http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en' rel='bookmark' title='How to put Varnish in front of your Webserver without doing any change.'>How to put Varnish in front of your Webserver without doing any change.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://nginx.org">Nginx</a> is an emerging Web server (it claims to power around 12% of the website) and is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption.</p>
<p>Personally I&#8217;m using it from 2010 and so far so good, no particular problems, it does perfectly his work and is frequently updated by the developers, I&#8217;m really happy of how is performing on my VPS and in this time I&#8217;ve learnt some small tricks and tips that perhaps could save you some time in the future.</p>
<p><span id="more-5449"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
1)<br />
<h3>Enable phpmyadmin with https protocol on a non standard port on Nginx</h3>
<p>it could be useful to have phpmyadmin installed to manage your DB, but it&#8217;s a good idea to have a dedicated Virtualhost on a dedicated (non standard port), so for example have it on https://linuxaria.com:111/phpmyadmin</p>
<p>If you use php5-fpm on standard port than your Nginx configuration to achieve this should be something like this one:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">server <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    listen       <span style="color: #000000;">111</span>;
    error_page <span style="color: #000000;">497</span> = https:<span style="color: #000000; font-weight: bold;">//</span><span style="color: #007800;">$host</span>:<span style="color: #000000;">111</span><span style="color: #007800;">$request_uri</span>;
    ssl                  on;
    ssl_certificate      <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>myca<span style="color: #000000; font-weight: bold;">/</span>server.crt;
    ssl_certificate_key  <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>myca<span style="color: #000000; font-weight: bold;">/</span>server.key;
    ssl_protocols        SSLv3 TLSv1;
    ssl_ciphers          HIGH:<span style="color: #000000; font-weight: bold;">!</span>aNULL:<span style="color: #000000; font-weight: bold;">!</span>MD5;
    root   <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>phpmyadmin;
    access_log <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>nginx<span style="color: #000000; font-weight: bold;">/</span>phpmyadmin-access.log;
    error_log <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>nginx<span style="color: #000000; font-weight: bold;">/</span>phpmyadmin-error.log;
&nbsp;
&nbsp;
    location <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
        index  index.html index.htm index.php;
    <span style="color: #7a0874; font-weight: bold;">&#125;</span>
    location ~ \.php$ <span style="color: #7a0874; font-weight: bold;">&#123;</span>
                include <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>nginx<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>fastcgi_params;
                fastcgi_pass  127.0.0.1:<span style="color: #000000;">9000</span>;
                fastcgi_index index.php;
                fastcgi_param  SCRIPT_FILENAME  <span style="color: #000000; font-weight: bold;">/</span>srv<span style="color: #000000; font-weight: bold;">/</span>wordpress<span style="color: #000000; font-weight: bold;">/</span>adminit<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$fastcgi_script_name</span>;
        <span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>The key directives are:</p>
<p>Listen 111 -> We tell to Nginx to listen on a particular port<br />
ssl                  on; -> we turn on the secure channel (https)<br />
error_page 497 = https://$host:111$request_uri; -> This is a good solution (IMO), if you reach this page with the http protocol, instead of getting an error page saying you are trying to use http on a https site you&#8217;ll be automatically redirected to the https site.</p>
<p>2)<br />
<h3>Redirect url with www to non-www with Nginx</h3>
<p>Some sites use www and others don&#8217;t use it, in both cases a good thing is to have something that redirect all the traffic of a type toward the other, so to forward all the non-www traffic to a www. url for linuxaria i could add these lines in my server configuration:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Replace linuxaria.com with your domain</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$host</span> = linuxaria.com<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
rewrite ^<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>$ http:<span style="color: #000000; font-weight: bold;">//</span>www.linuxaria.com<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$1</span> permanent;
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>Or do the opposite if i want to remove the www.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$host</span> = www.linuxaria.com<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
rewrite ^<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>$ http:<span style="color: #000000; font-weight: bold;">//</span>linuxaria.com<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$1</span> permanent;
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>3)<br />
<h3>Hotlinking protection with Nginx</h3>
<p>Hotlinking can be annoying, but if you want is easy to prevent it with Nginx.<br />
Just remember that you&#8217;ll block also some search engine, like google Image, a thing that could be not so positive for your website.<br />
In this example Nginx will returns a 403 when any hotlinking is detected.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">location ~<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>\.jpg<span style="color: #000000; font-weight: bold;">|</span>\.png<span style="color: #000000; font-weight: bold;">|</span>\.gif<span style="color: #000000; font-weight: bold;">|</span>\.jpeg<span style="color: #7a0874; font-weight: bold;">&#41;</span>$ <span style="color: #7a0874; font-weight: bold;">&#123;</span>
     valid_referers blocked www.linuxaria.com linuxaria.com;
     <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$invalid_referer</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
        <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">403</span>;
     <span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>Add this location inside your server block.</p>
<p>This directive use the Nginx <a target="_blank" href="http://wiki.nginx.org/HttpRefererModule">HttpRefererModule</a>, the directive valid_referers assigns a value of 0 or 1 to the variable $invalid_referer based on the contents of the referer header.</p>
<p>You can use this to help reduce deep-linking from outside sites. If Referer header is not accounted for in the list of valid_referers, then $invalid_referer will be set to 1, I&#8217;ve put as valid referer linuxaria.com and the special word <code>blocked</code> that means masked Referer header by firewall, for example, &#8220;Referer: XXXXXXX&#8221;.</p>
<p>4)<br />
<h3>Send all pages to a maintenance page with Nginx</h3>
<p>Perhaps you have to do some planned works on your CMS, or in general on your site, and you want that all your pages give a maintenance page with a message to the visitors, with these rules in your server you can achieve it:</p>
<p>error_page 503 @maintenance;</p>
<p>location /<br />
{<br />
    if (-f $document_root/mymaintenance.html)<br />
    {<br />
        return 503;<br />
    }</p>
<p>    try_files $uri /index.php?$args;<br />
}</p>
<p>location @maintenance<br />
{<br />
    rewrite ^ /mymaintenance.html break;<br />
}</p>
<p>When you want to go on maintenance mode just create the file $document_root/mymaintenance.html with a message for your users.</p>
<p>Related posts:<ol>
<li><a href='http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en' rel='bookmark' title='How to put Varnish in front of your Webserver without doing any change.'>How to put Varnish in front of your Webserver without doing any change.</a></li>
</ol></p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5449&amp;md5=418b9ea9c3d86661f07963249a8bca6f" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/9DWsOfovKbA1NJ09YmoNYJk4rDo/0/da"><img src="http://feedads.g.doubleclick.net/~a/9DWsOfovKbA1NJ09YmoNYJk4rDo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9DWsOfovKbA1NJ09YmoNYJk4rDo/1/da"><img src="http://feedads.g.doubleclick.net/~a/9DWsOfovKbA1NJ09YmoNYJk4rDo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/F_Sbn65tZu4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/tips-and-tricks-for-nginx?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Ftips-and-tricks-for-nginx%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Tips+and+Tricks+for+Nginx&amp;description=Nginx+is+an+emerging+Web+server+%28it+claims+to+power+around+12%25+of+the+website%29+and+is+known+for+its+high+performance%2C+stability%2C+rich+feature+set%2C+simple+configuration%2C+and+low...&amp;tags=best+practice%2Cmaintenance%2Cnginx%2Cphp5-fpm%2Cphpmyadmin%2Credirect%2Cvps%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/tips-and-tricks-for-nginx?lang=en</feedburner:origLink></item>
		<item>
		<title>Convert your audio files on Linux with Soundconverter</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/Mc_xrpVhXO0/convert-your-audio-files-on-linux-with-soundconverter</link>
		<comments>http://linuxaria.com/pills/convert-your-audio-files-on-linux-with-soundconverter?lang=en#comments</comments>
		<pubDate>Tue, 01 May 2012 22:55:14 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Pills]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[ac3 dts]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[audio file converter]]></category>
		<category><![CDATA[avi mpeg]]></category>
		<category><![CDATA[convertitore di file]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[flac]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[m4a]]></category>
		<category><![CDATA[mp3 aac]]></category>
		<category><![CDATA[mpeg mov]]></category>
		<category><![CDATA[Ogg-Vorbis]]></category>
		<category><![CDATA[soundconverter]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5437</guid>
		<description><![CDATA[It&#8217;s useful sometime to convert some type of audio files in another, and perhaps you don&#8217;t want to search for the correct command to use from the terminal, don&#8217;t worry there is a small and nice application that can do this for you: soundconverter SoundConverter is an audio file converter for the GNOME Desktop. It <a href='http://linuxaria.com/pills/convert-your-audio-files-on-linux-with-soundconverter?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s useful sometime to convert some type of audio files in another, and perhaps you don&#8217;t want to search for the correct command to use from the terminal, don&#8217;t worry there is a small and nice application that can do this for you: <a target="_blank" href="http://soundconverter.org/"><span id="GRmark_3f7dfd4b81bd3736a9f2a8a66167f87868ca8103_soundconverter:0" class="GRcorrect">soundconverter</span></a></p>
<p><span id="GRmark_394648d7aab05e91abf8aee55a89895e5c22e922_SoundConverter:0" class="GRcorrect">SoundConverter</span> is an audio file converter for the GNOME Desktop. It reads anything GStreamer can read (Ogg Vorbis, AAC, MP3, FLAC, WAV, AVI, MPEG, MOV, M4A, AC3, DTS, ALAC, MPC, Shorten, APE, SID, MOD, XM, S3M, etc&#8230;), and writes to WAV, FLAC, MP3, AAC, and Ogg Vorbis files.</p>
<p>More than enough for my standard tasks.</p>
<p><span id="more-5437"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<strong> <span id="GRmark_1499e2d123d48674601b5a842caa34b9f31daa33_SoundConverter:0" class="GRcorrect">SoundConverter</span> Features<br />
</strong></p>
<ul>
<li><span id="GRmark_5803f8bafcc09fd08e58532e8f3baa1f7f89e1aa_is:0" class="GRcorrect">is</span> simple to use, with an intuitive interface</li>
<li><span id="GRmark_8497c1d725783bd14d35a2e5a1c22e630706a2ff_is:0" class="GRcorrect">is</span> very fast and uses <span id="GRmark_8497c1d725783bd14d35a2e5a1c22e630706a2ff_multithreaded:1" class="GRcorrect">multithreaded</span> conversion</li>
<li>is capable of processing many files with ease, CPU usage reduced.</li>
<li>Ability to rename files automatically</li>
</ul>
<h3>Installation</h3>
<p>Soundconverter is usually available in all the repository of the major distributions.<br />
In my Ubuntu 12.04 i see that in the repository is available the version 1.5.4-1, so you can install it simply with a</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> soundconverter</pre></div></div>

<p>Or if you prefer a newer release you can use the <a target="_blank" href="http://www.getdeb.net/">get deb repository</a>, to add this external repository go to System-Administration-Software Sources, Third-Party Software tab, Add:<br />
<code>deb http://archive.getdeb.net/ubuntu precise-getdeb apps<br />
</code><br />
Add the repository GPG key, open a terminal window and type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">-O-</span> http:<span style="color: #000000; font-weight: bold;">//</span>archive.getdeb.net<span style="color: #000000; font-weight: bold;">/</span>getdeb-archive.key <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> add -</pre></div></div>

<p>Run from the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>And now i can get <span class="GRspelling">soundconverter</span> version 2.0.3-1~getdeb2~precise with the same command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> soundconverter</pre></div></div>

<p>Or as alternative you can use Ubuntu Software Center.<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>Basic usage</h3>
<p>To convert a file, for example from wma to mp3 just start it, multimedia -&gt; <span class="GRspelling">soundconverter</span> or write <span class="GRspelling">soundconverter</span> in a terminal, you&#8217;ll see a very basic windows like this one:</p>
<p><a href="http://cdn.linuxaria.com/wp-content/uploads/2012/05/SoundConverter_001.png?9d7bd4" rel="lightbox[5437]"><img class="aligncenter size-full wp-image-5438" title="SoundConverter_001" src="http://cdn.linuxaria.com/wp-content/uploads/2012/05/SoundConverter_001.png?9d7bd4" alt="SoundConverter_001" width="502" height="525" /></a></p>
<p>As first thing click on options you&#8217;ll see a windows like this one:</p>
<p><a href="http://cdn.linuxaria.com/wp-content/uploads/2012/05/screenshot-preferences.png?9d7bd4" rel="lightbox[5437]"><img class="aligncenter size-full wp-image-5439" title="screenshot-preferences" src="http://cdn.linuxaria.com/wp-content/uploads/2012/05/screenshot-preferences.png?9d7bd4" alt="screenshot-preferences" width="499" height="755" /></a></p>
<p>In this screen you&#8217;ll have multiple options:</p>
<p>The first option is whether to place the converted audio files. It&#8217;s pretty self-explanatory as you can put the new files in the same folder as the original files are into a folder of your choosing, you can also choose to delete the original file once that the conversion is done.</p>
<p>Second, is a nice feature where you can name the newly converted files based on the metadata (tags) with the audio files. There is a drop-down menu where you can choose pre-made options on how you want to name the new audio files or you can specify what you want in an input box.</p>
<p>Next is the option of choosing which audio format you want to have for your audio files. Depending on whether you have the libraries for all each format, you may only have some options. What&#8217;s nice is when you choose an audio format, a drop-down menu will show up with the options of quality to choose from.</p>
<p>As last thing, you can choose whether or not to resample the audio you are converting to your needs.</p>
<p>Now click on Add file or Add Folder and select the music file or folder that you want to convert, you&#8217;ll see the name of the files and their meta tag in the main windows, now click Convert and wait.</p>
<p>All done, simply and effective</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/uO8RF1_JEoM" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed wmode="opaque" src="http://www.youtube.com/v/uO8RF1_JEoM" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5437&amp;md5=306086073898579ff96c3cbf4578f0e3" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/PSTe_GvVzKq3sxOSYu8jJfEqs-o/0/da"><img src="http://feedads.g.doubleclick.net/~a/PSTe_GvVzKq3sxOSYu8jJfEqs-o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PSTe_GvVzKq3sxOSYu8jJfEqs-o/1/da"><img src="http://feedads.g.doubleclick.net/~a/PSTe_GvVzKq3sxOSYu8jJfEqs-o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/Mc_xrpVhXO0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/pills/convert-your-audio-files-on-linux-with-soundconverter?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Fpills%2Fconvert-your-audio-files-on-linux-with-soundconverter%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=Convert+your+audio+files+on+Linux+with+Soundconverter&amp;description=It%26%238217%3Bs+useful+sometime+to+convert+some+type+of+audio+files+in+another%2C+and+perhaps+you+don%26%238217%3Bt+want+to+search+for+the+correct+command+to+use+from+the+terminal%2C+don%26%238217%3Bt+worry...&amp;tags=ac3+dts%2Captitude%2Caudio+file+converter%2Cavi+mpeg%2Cconvertitore+di+file%2Cdebian%2Cflac%2Cgnome+desktop%2Cgstreamer%2Clinux%2Cm4a%2Cmp3+aac%2Cmpeg+mov%2COgg-Vorbis%2Csoundconverter%2Cubuntu%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/pills/convert-your-audio-files-on-linux-with-soundconverter?lang=en</feedburner:origLink></item>
		<item>
		<title>How to put Varnish in front of your Webserver without doing any change.</title>
		<link>http://feedproxy.google.com/~r/Linuxaria_En/~3/4bEd4Oj6eUs/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change</link>
		<comments>http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en#comments</comments>
		<pubDate>Mon, 30 Apr 2012 19:37:03 +0000</pubDate>
		<dc:creator>linuxari</dc:creator>
				<category><![CDATA[Articoli]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[accelerator]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[experience change]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[ispconfig]]></category>
		<category><![CDATA[kloxo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[load balancing]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[open source web]]></category>
		<category><![CDATA[porta 80]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[static elements]]></category>
		<category><![CDATA[Varnish]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[web accelerator]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://linuxaria.com/?p=5434</guid>
		<description><![CDATA[Varnish is an open source &#8220;web accelerator&#8221; which you can use to speed up your website. It can cache certain static elements, such as images or javascript but you can also use it for other purposes such as Load balancing or some additional security, in general most of the people want to try it and <a href='http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en' class='excerpt-more'>[...]</a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="https://www.varnish-cache.org/">Varnish</a> is an open source &#8220;web accelerator&#8221; which you can use to speed up your website.</p>
<p>It can cache certain static elements, such as images or javascript but you can also use it for other purposes such as Load balancing or some additional security, in general most of the people want to try it and test their website to see if it&#8217;s really so <a target="_blank" href="http://www.garron.me/linux/apache-vs-nginx-php-fpm-varnish-apc-wordpress-performance.html">amazing</a> (IMO yes, but test it yourself).</p>
<p>The <a title="Supercharge WordPress, Part 1" href="http://linuxaria.com/article/supercharge-wordpress-part-1">traditional guides</a> will tell you to move your webserver to another port, perhaps 81,8080 or just bind to localhost, configure Varnish to listen to port 80 and use the web server as backend, the server where Varnish will forward requests not found in his cache.</p>
<p>This is the &#8220;normal&#8221; configuration and it works fine, but sometimes you just want to make a quick Test or perhaps you are using a <a title="4 way to administer Linux with a web interface" href="http://linuxaria.com/article/administer-linux-web-interface">Control Panel</a>, such as Cpanel, Kloxo or ISPConfig and in my experience change the standard listening ports of Apache is not a decision to be taken lightly with these tools.</p>
<p>So in a VPS (with Kloxo) I&#8217;ve used a different approach: <a title="7 Uncommon uses of Iptables" href="http://linuxaria.com/howto/tricks-iptables-firewall">iptables</a>.<br />
<span id="more-5434"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
In my approach I&#8217;ve left the <span id="GRmark_b5268297b44c13b050ed5b1eb90a7b6e9f2dae43_webserver:0" class="GRcorrect">webserver</span> (Apache for me) sitting on port 80, so no change at all on this side.<br />
I&#8217;ve configured varnish to listen on port 8080 and set as backend the Apache on port 80.<br />
I started Varnish and, as expected, going to the port 8080 I&#8217;ve seen the site correctly (provided by Apache).</p>
<p>And now some iptables &#8220;magic&#8221;, <span class="pullquote">all request that goes to port 80 of the server are silently redirected to port 8080</span>, and so Varnish becomes our front-end server with no change on Apache configuration.</p>
<p><strong>How to do it</strong></p>
<p>As you have probably guessed the only &#8220;trick&#8221; is to use one of the many iptables features, iptables is a user space application that allows to configure the tables provided by the Linux kernel firewall, and in particular I&#8217;ve used the <code>nat</code> table with the <code>PREROUTING</code> chain using the action <code>redirect</code>.</p>
<p>From the iptables man page:</p>
<blockquote><p><strong>nat</strong>:<br />
This table is consulted when a packet that creates a new connection is encountered. It consists of three<br />
built-ins: PREROUTING (for altering packets as soon as they come in), OUTPUT (for altering locally-generated<br />
packets before routing), and POSTROUTING (for altering packets as they are about to go out).</p></blockquote>
<p>So <span class="pullquote">as soon as a packet enters the &#8220;firewall&#8221;, iptables, checks if it has a destination port of 80</span> if so it apply an action, in my case <code>redirect</code>, so the packet is redirected to port 8080 where Varnish is listening.</p>
<p><strong>Iptables Rules and <a href="http://linuxaria.com/pills/aliaser-alias-linux-bash?lang=en">Alias</a></strong></p>
<p>To put the rules that redirect all the traffic from port 80 to 8080 open a terminal <strong>as root</strong> and use the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#iptables -t nat  -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080</span></pre></div></div>

<p>If you want to remove Varnish as Front end server you can simply remove that rule with the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#iptables -t nat  -D PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080</span></pre></div></div>

<p>And to check if the redirect is active, just ask it to iptables with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#iptables -L -t nat</span></pre></div></div>

<p>If you see a line like the following, it means that the redirect is active, if there is nothing in the output it means that it&#8217;s inactive.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Chain PREROUTING <span style="color: #7a0874; font-weight: bold;">&#40;</span>policy ACCEPT<span style="color: #7a0874; font-weight: bold;">&#41;</span>
target     prot opt <span style="color: #7a0874; font-weight: bold;">source</span>               destination         
REDIRECT   tcp  <span style="color: #660033;">--</span>  0.0.0.0<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">0</span>            0.0.0.0<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">0</span>            tcp dpt:<span style="color: #000000;">80</span> redir ports <span style="color: #000000;">8080</span></pre></div></div>

<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2431705124166952";
/* Largone */
google_ad_slot = "1711601452";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
But there is an easier way to use these commands, as <strong>root</strong> just add <span id="GRmark_5a27d85934db708333dfe59220ace647cae0a7e4_in:0" class="GRcorrect">in</span> your <code>~/<span id="GRmark_5a27d85934db708333dfe59220ace647cae0a7e4_.:1" class="GRcorrect">.</span><span id="GRmark_5a27d85934db708333dfe59220ace647cae0a7e4_bashrc:2" class="GRcorrect">bashrc</span></code> file these 3 alias:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">varnishon</span>=<span style="color: #ff0000;">'iptables -t nat  -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080'</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">varnishoff</span>=<span style="color: #ff0000;">'iptables -t nat  -D PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080'</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">varnishstatus</span>=<span style="color: #ff0000;">'iptables -L -t nat |grep -q 8080; if [ &quot;test$?&quot; = &quot;test0&quot; ]; then echo &quot;Varnish On&quot;; else echo &quot;Varnish Off&quot;; fi'</span></pre></div></div>

<p>And now you can turn on and off Varnish with just 1 command.</p>
<h3>Final Notes</h3>
<p>I&#8217;ve not tested with a benchmark how worst perform this configuration in comparison of a traditional solution, probably not much as iptables is a kernel service and is really light, anyway if you have a site with a lot of traffic use this configuration just to test varnish, and if you like it do a traditional installation.</p>
<p>No related posts.</p> <p><a href="http://linuxaria.com/?flattrss_redirect&amp;id=5434&amp;md5=bb42ab36f509150570afc0552f8aab21" title="Flattr" target="_blank"><img src="http://www.linuxaria.com/wp-content/plugins/flattr/img/flattr-badge-large.png?9d7bd4" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/56f1RXiLP_4uN4hOU6drqjuYnhQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/56f1RXiLP_4uN4hOU6drqjuYnhQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/56f1RXiLP_4uN4hOU6drqjuYnhQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/56f1RXiLP_4uN4hOU6drqjuYnhQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linuxaria_En/~4/4bEd4Oj6eUs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en/feed&amp;lang=en</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=linuxaria&amp;popout=1&amp;url=http%3A%2F%2Flinuxaria.com%2Farticle%2Fhow-to-put-varnish-in-front-of-your-webserver-without-doing-any-change%3Flang%3Den&amp;language=en_GB&amp;category=text&amp;title=How+to+put+Varnish+in+front+of+your+Webserver+without+doing+any+change.&amp;description=Varnish+is+an+open+source+%26%238220%3Bweb+accelerator%26%238221%3B+which+you+can+use+to+speed+up+your+website.+It+can+cache+certain+static+elements%2C+such+as+images+or+javascript+but+you+can...&amp;tags=accelerator%2Capache%2Ccontrol+panel%2Ccpanel%2Cexperience+change%2Ciptables%2Cispconfig%2Ckloxo%2Clinux%2Cload+balancing%2Cnginx%2Copen+source+web%2Cporta+80%2Cports%2Cstatic+elements%2CVarnish%2Cvps%2Cweb+accelerator%2Cweb+server%2Cblog" type="text/html" />
	<feedburner:origLink>http://linuxaria.com/article/how-to-put-varnish-in-front-of-your-webserver-without-doing-any-change?lang=en</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using disk: enhanced (Requested URI contains query)
Object Caching 8365/8493 objects using apc
Content Delivery Network via cdn.linuxaria.com

Served from: www.linuxaria.com @ 2012-05-17 08:04:55 -->

