Question

I'm trying to use Cheyenne to serve a news feed and would like to ensure that files with the .feed extension are served as application/atom+xml. How do I configure Cheyenne to do this?

Was it helpful?

Solution

Got it! In httpd.cfg in either the globals, default or host section (see docs), add this directive:

set-mime application/atom+xml .feed

or

set-mime application/atom+xml [.feed .atom]

OTHER TIPS

Could you change extension to .rsp instead and then generate the appropriate headers that way with the feed data as a data block inside the rsp script?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top