Newbie question: How to send an empty response?

Hi,

I want to have a controller action that simply sets a few headers and respond without a body. [see below]. But Rails wants to load the erb template file for the action, which does not exist. Is there a way to instruct the controller to respond without loading the template ?

Thanks

render :nothing => true

Thanks!