# HG changeset patch # User jbe # Date 1436720405 -7200 # Node ID 280bd7c84b381180c1c089588021f1c670f04816 # Parent f132dc5b5bb01dffd0e9f102f06a6c231a9692da Fixed trivial error in example_application.lua diff -r f132dc5b5bb0 -r 280bd7c84b38 example_application.lua --- a/example_application.lua Sun Jul 12 18:59:51 2015 +0200 +++ b/example_application.lua Sun Jul 12 19:00:05 2015 +0200 @@ -61,12 +61,12 @@ static_headers = {"Server: Moonbridge Example Server"}, request_header_size_limit = 1024*1024, -- maximum size of request headers request_body_size_limit = 16*1024*1024*1024, -- allow big file uploads - idle_timeout = 65, -- maximum time until receiving the first byte of the request headera - stall_timeout = 60, -- maximum time a client connection may be stalled - request_header_timeout = 120, -- maximum time until receiving the remaining bytes of the request header - response_timeout = 3600, -- time in which request body and response must be sent - maximum_input_chunk_size = 16384 -- tweaks behavior of request-body parser - minimum_output_chunk_size = 1024 -- chunk size for chunked-transfer-encoding + idle_timeout = 65, -- maximum time until receiving the first byte of the request headera + stall_timeout = 60, -- maximum time a client connection may be stalled + request_header_timeout = 120, -- maximum time until receiving the remaining bytes of the request header + response_timeout = 3600, -- time in which request body and response must be sent + maximum_input_chunk_size = 16384, -- tweaks behavior of request-body parser + minimum_output_chunk_size = 1024 -- chunk size for chunked-transfer-encoding }, function(request)