send-file <file> [ headers \ [ 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!
send-file "somepic.jpg" headers cache-control "max-age: 3600"Copied!
out-header use custom "CustomOption3"="CustomValue3", "Status"="418 I'm a teapot"Copied!
send-file "/home/gliim/files/myfile.jpg" headers content-type "image/jpg"Copied!
set-string pdf_doc="/home/mydir/myfile.pdf" send-file pdf_doc headers content-type "application/pdf"Copied!
send-file "/home/user/file.pdf" headers download content-type "application/pdf"Copied!