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

<channel>
	<title>Shane Sveller &#187; firefox</title>
	<atom:link href="http://shanesveller.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://shanesveller.com</link>
	<description>Somewhere between happy and total f**king wreck</description>
	<lastBuildDate>Thu, 07 Jan 2010 18:31:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Personal internet acceleration, part 1</title>
		<link>http://shanesveller.com/2008/04/14/personal-internet-acceleration-part-1/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=personal-internet-acceleration-part-1</link>
		<comments>http://shanesveller.com/2008/04/14/personal-internet-acceleration-part-1/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 17:57:07 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[squid]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://shanesveller.com/?p=38</guid>
		<description><![CDATA[My SFF server machine has been configured to speed up my digital life. Squid caching web proxy apt-cacher caching apt proxy BIND9 caching/local DNS server Installing the squid web proxy apt-get install squid squid-prefetch You will then need to configure the ACL to allow access through the proxy from the local network. nano /etc/squid/squid.conf visible_hostname]]></description>
			<content:encoded><![CDATA[<p>My SFF server machine has been configured to speed up my digital life.<span id="more-20"></span></p>
<ul>
<li>Squid caching web proxy</li>
<li>apt-cacher caching apt proxy</li>
<li>BIND9 caching/local DNS server</li>
</ul>
<h3>Installing the squid web proxy</h3>
<p><code>apt-get install squid squid-prefetch</code></p>
<p>You will then need to configure the ACL to allow access through the proxy from the local network.</p>
<p><code>nano /etc/squid/squid.conf</code></p>
<pre>
visible_hostname server1     #Line added
...
http_port 8080     #Line changed
...
cache_dir ufs /var/spool/squid 2000 16 256     #Line changed
...
acl local src 10.0.1.0/255.255.255.0     #Line added
http_access allow local     #Line added
</pre>
<p>This configures the squid cache to listen on port 8080 instead of 3128, allows access from all IPs in the range 10.0.1.1 &#8211; 10.0.1.255, and sets the cache size to 2000MB. Then you need to restart the squid service:<br />
<code>/etc/init.d/squid restart</code></p>
<p>You can then configure your end users&#8217; machines to use <code>http://server1:8080/</code> as their internet proxy. I recommend setting this for insecure (non-SSL) traffic only as I have noticed some odd behavior with SSL proxying.</p>
<p>In <a href="http://getfirefox.com">Firefox</a> this is dead-simple:</p>
<ol>
<li>Open the Preferences window from the application menu on OSX or the Options window from the Tools menu on Windows.</li>
<li>Choose the Advanced section at the top, followed by the Network tab.</li>
<li>Click the Settings button under the Connection header.</li>
<li>Choose the &#8220;Manual configuration&#8221; radio button and enter <code>http://server1:8080/</code> in the HTTP Proxy box.</li>
</ol>
<p>Safari on OSX uses the system-wide proxy settings:</p>
<ol>
<li>Choose System Preferences from the Apple menu</li>
<li>Click the Network item under the Internet &amp; Network heading</li>
<li>Select your primary connection, wireless or wired, from the left-hand list and click the Advanced button</li>
<li>Choose the Proxies tab, choose Manually in the drop-down menu, check the box next to Web Proxy</li>
<li>Enter <code>server1</code> in the first box and <code>8080</code> in the second box</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://shanesveller.com/2008/04/14/personal-internet-acceleration-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
