Testing Typo on Lighttpd
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")
Enjoying the content? Be sure to subscribe to my RSS feed.



