Skip to content

Using add_header for setting Content-Type¤

Bad example¤

add_header Content-Type text/plain;
This may result in duplicate Content-Type headers if your backend sets it.

Good example¤

default_type text/plain;