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

<channel>
	<title>Kevin Worthington &#187; nginx</title>
	<atom:link href="http://www.kevinworthington.com/category/computers/nginx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinworthington.com</link>
	<description>Nginx for Windows, Lighttpd for Windows, WordPress, iPhone, Gmail, Windows 7, Linux, and Tech</description>
	<lastBuildDate>Wed, 24 Feb 2010 22:30:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Nginx on Mac OS X Snow Leopard in 2 Minutes</title>
		<link>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/</link>
		<comments>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:30:14 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=739</guid>
		<description><![CDATA[A quick article to how to compile a basic version of the Nginx web server on Mac OS X 10.6.2 Snow Leopard. Includes step by step directions, and a script to automate the process.<p><a href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/">Nginx on Mac OS X Snow Leopard in 2 Minutes</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Overview</strong><br />
This is a quick article to show you how I compiled a basic version of <a href="http://nginx.org/en/download.html" title="Download Nginx from nginx.org">Nginx 0.8.33</a> on <a href="http://www.apple.com/macosx/" title="Mac OS X Snow Leopard on Apple.com">Mac OS X 10.6.2 Snow Leopard</a>. The &#8220;2 minute&#8221; compilation that I mention in the title of this article is when using the script that I provide below. For the Do-It-Yourself (DIY) crowd, I&#8217;m breaking down the steps. Variations in your Mac&#8217;s specs, and your copy and paste skills may increase the total time to over 2 minutes.</p>
<p><strong>Prerequisites</strong><br />
First, if you do not already have it installed, <a href="http://developer.apple.com/technology/xcode.html" title="Download Xcode from apple.com">download Xcode from Apple&#8217;s website</a>, and run the installer from the .dmg file. For the record, the file I installed was called xcode321_10m2003_developerdvd.dmg, yours may be slightly different.</p>
<p><strong>Install PCRE</strong><br />
Nginx requires <a href="http://www.pcre.org/" title="PCRE - Perl Compatible Regular Expressions website">PCRE &#8211; Perl Compatible Regular Expressions</a> to build, I used <a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.01.tar.gz" title="Download PCRE 8.01 via anonymous FTP">PCRE version 8.01</a>. In a Terminal, run:<br />
<code>sudo curl -OL h ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.01.tar.gz > /usr/local/src/pcre-8.01.tar.gz</code><br />
<code>sudo mkdir -p /usr/local/src</code><br />
<code>cd /usr/local/src</code><br />
<code>tar xvzf pcre-8.01.tar.gz</code><br />
<code>cd pcre-8.01</code><br />
<code>./configure --prefix=/usr/local</code><br />
<code>make</code><br />
<code>sudo make install</code><br />
<code>cd ..</code></p>
<p><strong>Install Nginx</strong><br />
(You should still be in <code>/usr/local/src</code>, if you followed along from above.)<br />
<code>tar xvzf nginx-0.8.33.tar.gz</code><br />
<code>cd nginx-0.8.33</code><br />
<code>./configure --prefix=/usr/local --with-http_ssl_module</code><br />
<code>make</code><br />
<code>sudo make install</code></p>
<p><strong>Start Nginx</strong><br />
Assuming that you have <code>/usr/local</code> in your $PATH (<code>which nginx</code> should say:<code>/usr/local/sbin/nginx</code>), you can simply run:<br />
<code>sudo nginx</code><br />
Note: to add <code>/usr/local</code> to your $PATH variable, edit or create <code>~/.profile</code> to include it. For reference, mine currently looks like this:<br />
<code>PATH="/usr/bin:/bin:/usr/sbin:/sbin:<strong>/usr/local</strong>:/usr/local/sbin:/usr/local/bin:/usr/X11/bin:/opt/X11/bin"</code> &#8211; I emphasized in bold type what you need to add to your PATH.</p>
<p><strong>The 2 Minute way, using my script</strong><br />
All of the above instructions, in a <a href="http://kwimg.com/wp-content/uploads/2010/02/build-nginx.sh.txt" title="Download a small script to automate the build process of Nginx on Mac OS X">nice little script</a>. Save it to your Mac as build-nginx.sh, and run:<br />
<code>chmod a+x build-nginx.sh</code><br />
<code>sudo ./build-nginx.sh</code></p>
<p><strong>Conclusion</strong><br />
It&#8217;s a pretty quick process to get Nginx installed nicely on your Mac, especially if you use my script. This provides a very basic install, but it should get you moving in the right directions. If you have any comments, questions, or suggestions, I would love to hear your feedback, so leave a comment below.</p>
<p><a href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/">Nginx on Mac OS X Snow Leopard in 2 Minutes</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes+http://bit.ly/af9J3M" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;t=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;t=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/&amp;title=Nginx+on+Mac+OS+X+Snow+Leopard+in+2+Minutes" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx on Mac OS X Snow Leopard in 2 Minutes" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Your Comments Needed: Nginx for Windows and Lighttpd for Windows</title>
		<link>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/</link>
		<comments>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 03:49:50 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=734</guid>
		<description><![CDATA[Although I haven&#8217;t built Nginx for Windows and Lighttpd for Windows in a while, I need your help. I&#8217;m trying to determine if there is enough interest for me to create my Cygwin based builds again. So even if you have never left a comment here before, please do today. Please let me know:

if you [...]<p><a href="http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/">Your Comments Needed: Nginx for Windows and Lighttpd for Windows</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Although I haven&#8217;t built Nginx for Windows and Lighttpd for Windows in a while, I need your help. I&#8217;m trying to determine if there is enough interest for me to create my Cygwin based builds again. So even if you have never left a comment here before, please do today. Please let me know:</p>
<ul>
<li>if you are interested in: Nginx and/or Lighttpd for Windows</li>
<li>which version of Windows you will be running on: Windows XP, Windows Vista, Windows 2003 Server, Windows 7</li>
<li>if your Windows version is 32-bit or 64-bit</li>
</ul>
<p>This is very important! Please leave a comment below right now. Thanks as always for reading!</p>
<p><a href="http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/">Your Comments Needed: Nginx for Windows and Lighttpd for Windows</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows+http://bit.ly/df70Ic" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;t=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;t=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/&amp;title=Your+Comments+Needed%3A+Nginx+for+Windows+and+Lighttpd+for+Windows" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Your Comments Needed: Nginx for Windows and Lighttpd for Windows" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/comments-needed-nginx-windows-lighttpd-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx for Windows Native Builds (win32)</title>
		<link>http://www.kevinworthington.com/nginx-windows-native-builds-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-windows-native-builds-win32/#comments</comments>
		<pubDate>Sun, 31 May 2009 07:44:33 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[2000]]></category>
		<category><![CDATA[Native]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=421</guid>
		<description><![CDATA[Nginx for Windows now available in native format. No Cygwin files needed!<p><a href="http://www.kevinworthington.com/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>So if you have not already noticed, read, or heard, there are now native Nginx for Windows builds. You can grab them from <a href="http://nginx.org/">http://nginx.net</a>. As of this writing, the latest version is <a href="http://sysoev.ru/nginx/nginx-0.7.59.zip">0.7.59</a>.</p>
<p>Thanks for downloading my non-native Cygwin builds. Stay tuned for future projects. I have a few ideas in the pipeline, I&#8217;ll be sure to mention them as they become available.</p>
<p><a href="http://www.kevinworthington.com/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+for+Windows+Native+Builds+%28win32%29+http://bit.ly/887tMc" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;title=Nginx+for+Windows+Native+Builds+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;title=Nginx+for+Windows+Native+Builds+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;t=Nginx+for+Windows+Native+Builds+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;t=Nginx+for+Windows+Native+Builds+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;title=Nginx+for+Windows+Native+Builds+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-windows-native-builds-win32/&amp;title=Nginx+for+Windows+Native+Builds+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx for Windows Native Builds (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-windows-native-builds-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.50 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0750-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0750-windows-win32/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 18:32:17 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.7.50]]></category>
		<category><![CDATA[0.7.50 for Windows]]></category>
		<category><![CDATA[0.7.50 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=414</guid>
		<description><![CDATA[Nginx 0.7.50 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.50 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0750-windows-win32/">Nginx 0.7.50 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.7.50 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>Please note that due to quick upstream bugfix releases, there were not Nginx for Windows releases 0.7.48 or 07.49. The previous version in this branch was 0.7.47, and an upgrade to 0.7.50 is recommended.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.50 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0750-windows-win32/">Nginx 0.7.50 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.50+for+Windows+%28win32%29+http://bit.ly/4zFzXV" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;title=Nginx+0.7.50+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;title=Nginx+0.7.50+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;t=Nginx+0.7.50+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;t=Nginx+0.7.50+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;title=Nginx+0.7.50+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0750-windows-win32/&amp;title=Nginx+0.7.50+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.50 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0750-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.6.36 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0636-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0636-windows-win32/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 07:36:37 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.6.36]]></category>
		<category><![CDATA[0.6.36 for Windows]]></category>
		<category><![CDATA[0.6.36 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=411</guid>
		<description><![CDATA[Nginx 0.6.36 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.6.36 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0636-windows-win32/">Nginx 0.6.36 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.6.36 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>SSL support is now included. Please report any bugs.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.6.36 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0636-windows-win32/">Nginx 0.6.36 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.6.36+for+Windows+%28win32%29+http://bit.ly/5i780Q" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;title=Nginx+0.6.36+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;title=Nginx+0.6.36+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;t=Nginx+0.6.36+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;t=Nginx+0.6.36+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;title=Nginx+0.6.36+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0636-windows-win32/&amp;title=Nginx+0.6.36+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.6.36 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0636-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.47 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0747-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0747-windows-win32/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 19:02:55 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.7.47]]></category>
		<category><![CDATA[0.7.47 for Windows]]></category>
		<category><![CDATA[0.7.47 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=408</guid>
		<description><![CDATA[Nginx 0.7.47 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.47 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0747-windows-win32/">Nginx 0.7.47 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.7.47 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>Please note that due to quick upstream bugfix releases, there were not Nginx for Windows releases 0.7.45 or 07.46. The previous version was 0.7.44, and an upgrade to 0.7.47 is recommended.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.47 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0747-windows-win32/">Nginx 0.7.47 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.47+for+Windows+%28win32%29+http://bit.ly/6mOy2M" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;title=Nginx+0.7.47+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;title=Nginx+0.7.47+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;t=Nginx+0.7.47+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;t=Nginx+0.7.47+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;title=Nginx+0.7.47+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0747-windows-win32/&amp;title=Nginx+0.7.47+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.47 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0747-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.44 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0744-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0744-windows-win32/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 14:17:28 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[0.7.44]]></category>
		<category><![CDATA[0.7.44 for Windows]]></category>
		<category><![CDATA[0.7.44 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=405</guid>
		<description><![CDATA[Nginx 0.7.44 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.44 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0744-windows-win32/">Nginx 0.7.44 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.7.44 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.44 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0744-windows-win32/">Nginx 0.7.44 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.44+for+Windows+%28win32%29+http://bit.ly/4PxeUC" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;title=Nginx+0.7.44+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;title=Nginx+0.7.44+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;t=Nginx+0.7.44+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;t=Nginx+0.7.44+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;title=Nginx+0.7.44+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0744-windows-win32/&amp;title=Nginx+0.7.44+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.44 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0744-windows-win32/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.43 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0743-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0743-windows-win32/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 14:54:00 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.7.43]]></category>
		<category><![CDATA[0.7.43 for Windows]]></category>
		<category><![CDATA[0.7.43 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=401</guid>
		<description><![CDATA[Nginx 0.7.43 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.43 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0743-windows-win32/">Nginx 0.7.43 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.7.43 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.43 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0743-windows-win32/">Nginx 0.7.43 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.43+for+Windows+%28win32%29+http://bit.ly/8ku1p0" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;title=Nginx+0.7.43+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;title=Nginx+0.7.43+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;t=Nginx+0.7.43+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;t=Nginx+0.7.43+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;title=Nginx+0.7.43+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0743-windows-win32/&amp;title=Nginx+0.7.43+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.43 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0743-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.42 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0742-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0742-windows-win32/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 14:13:17 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.7.42]]></category>
		<category><![CDATA[0.7.42 for Windows]]></category>
		<category><![CDATA[0.7.42 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=397</guid>
		<description><![CDATA[Nginx 0.7.42 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.42 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0742-windows-win32/">Nginx 0.7.42 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: This site is ad-supported &#8211; please support it by supporting the sponsors.</p>
<p>Nginx 0.7.42 for Windows is now available. For build information, please read the README.txt in the install package, and the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.42 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0742-windows-win32/">Nginx 0.7.42 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.42+for+Windows+%28win32%29+http://bit.ly/6eME7e" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;title=Nginx+0.7.42+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;title=Nginx+0.7.42+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;t=Nginx+0.7.42+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;t=Nginx+0.7.42+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;title=Nginx+0.7.42+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0742-windows-win32/&amp;title=Nginx+0.7.42+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.42 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0742-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.7.41 for Windows (win32)</title>
		<link>http://www.kevinworthington.com/nginx-0741-windows-win32/</link>
		<comments>http://www.kevinworthington.com/nginx-0741-windows-win32/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 14:58:48 +0000</pubDate>
		<dc:creator>Kev</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[0.7.41]]></category>
		<category><![CDATA[0.7.41 for Windows]]></category>
		<category><![CDATA[0.7.41 on Windows]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[lighttpd alternative]]></category>
		<category><![CDATA[lighttpd windows alternative]]></category>
		<category><![CDATA[lightweight Windows web server]]></category>
		<category><![CDATA[nginx for Windows]]></category>
		<category><![CDATA[nginx on windows]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.kevinworthington.com/?p=393</guid>
		<description><![CDATA[Nginx 0.7.41 for Windows is now available. It was built with Cygwin on Vista (32-bit). It works on 32-bit versions of Windows Vista, Windows XP, and Windows 2000, and other similar versions.

To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong>

<strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.41 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.<p><a href="http://www.kevinworthington.com/nginx-0741-windows-win32/">Nginx 0.7.41 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><u>PLEASE NOTE: Native Nginx Windows builds are available at <a href="http://nginx.org/">http://nginx.net</a></u><br />(My announcement was here: <a href="/nginx-windows-native-builds-win32/">Nginx for Windows Native Builds</a>.)<br />The last available Nginx for Windows build that I created using Cygwin was <a href="/nginx-0750-windows-win32/">Nginx for Windows 0.7.50</a>, the full page of my builds are located here: <a href="/nginx-for-windows/">Nginx For Windows</a>.</strong> Updated September 29, 2009.</p>
<p>Full disclosure: My entire site is ad-supported &#8211; please support this site by supporting the sponsors.</p>
<p>Nginx 0.7.41 for Windows is now available. For build information, please read the README.txt included in the install package, and also read the notes on the <a href="http://www.kevinworthington.com/nginx-for-windows/" title="Nginx for Windows download page">Nginx for Windows download page</a>.</p>
<p>I hope you find this software useful, although it is offered without support and without guarantees.</p>
<p>To get immediate notifications for new Nginx for Windows releases and for more technology related news, <strong><a href="http://feedproxy.google.com/feedburner/KevinWorthington">Subscribe to my RSS feed</a> and <a href="http://twitter.com/kworthington">follow me on Twitter</a>.</strong></p>
<p><strong><a href="http://www.kevinworthington.com/nginx-for-windows/">Download Nginx for Windows 0.7.41 here.</a></strong> <a href="http://nginx.net/CHANGES">Changelog</a>.</p>
<p><a href="http://www.kevinworthington.com/nginx-0741-windows-win32/">Nginx 0.7.41 for Windows (win32)</a> is an article from: <a href="http://www.kevinworthington.com title="Kevin Worthington"">Kevin Worthington</a></p>
<p class="ttalignleft"><a rel="nofollow" class="tt" href="http://twitter.com/home/?status=Nginx+0.7.41+for+Windows+%28win32%29+http://bit.ly/8hcfIN" title="Post to Twitter"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-twitter-micro3.png" alt="Post to Twitter" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://delicious.com/post?url=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;title=Nginx+0.7.41+for+Windows+%28win32%29" title="Post to Delicious"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;title=Nginx+0.7.41+for+Windows+%28win32%29" title="Post to Digg"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-digg-micro3.png" alt="Post to Digg" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;t=Nginx+0.7.41+for+Windows+%28win32%29" title="Post to Facebook"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;t=Nginx+0.7.41+for+Windows+%28win32%29&amp;c=%3Cp%3EPowered+by+%3Ca+href%3D%22http%3A%2F%2Frichardxthripp.thripp.com%2Ftweet-this%22%3ETweet+This%3C%2Fa%3E%3C%2Fp%3E" title="Post to MySpace"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-myspace-micro3.png" alt="Post to MySpace" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://reddit.com/submit?url=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;title=Nginx+0.7.41+for+Windows+%28win32%29" title="Post to Reddit"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-reddit-micro3.png" alt="Post to Reddit" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a> <a rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.kevinworthington.com/nginx-0741-windows-win32/&amp;title=Nginx+0.7.41+for+Windows+%28win32%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.kevinworthington.com/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" width="80" height="15" title="Nginx 0.7.41 for Windows (win32)" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.kevinworthington.com/nginx-0741-windows-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
