out-header default | out-header use \ [ content-type <content type> ] \ [ download [ <download> ] ] \ [ etag [ <etag> ] ] \ [ file-name <file name> ] \ [ ( cache-control <cache control> ) | no-cache ] \ [ status-id <status id> ] \ [ status-text <status text> ] \ [ custom <header name>=<header value> [ , ... ] ]Copied!
text/html;charset=utf-8
Copied!
Cache-Control:max-age=0, no-cache; Pragma: no-cacheCopied!
send-file "somepic.jpg" headers cache-control "max-age: 3600"Copied!
out-header use custom "CustomOption3"="CustomValue3", "Status"="418 I'm a teapot"Copied!
out-header defaultCopied!
out-header use content-type "text/html" cache-control "max-age:3600" custom "some_HTTP_option"="value_for_some_HTTP_option", "some_HTTP_option_1"="value_for_some_HTTP_option_1"Copied!