Read my latest article: Managing your Life the Agile Way in 2009 (posted Sun, 28 Dec 2008 21:20:00 GMT)

Testing Typo on Lighttpd

Posted by Robby Russell Sat, 18 Jun 2005 18:54:00 GMT

did my xml stop working? doesn’t seem to be updating…

edit: no, apparently with lighttpd, I needed to add a few rewrites. It looks like Typo made some changes to their rss paths a while ago (after planet rubyonrails and other places started using my rss feed for syndication). So, I added the following to my lighttpd.conf to allow those to still work.

url.rewrite = (
    "^/xml/rss/feed.xml$" => "/xml/rss/feed",
    "^/xml/atom/feed.xml$" => "/xml/atom/feed" )

Okay, after taking a minute to test this. I have now simplified this to:

url.rewrite = (
    "^/xml/(.*)/feed.xml$" => "/xml/$1/feed")
Subscribe to my RSS feed Enjoying the content? Be sure to subscribe to my RSS feed.
Comments

Share your thoughts... (really...I want to hear them)

Comments