문제

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?

도움이 되었습니까?

해결책

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]

다른 팁

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?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top