moonbridge

changeset 227:280bd7c84b38

Fixed trivial error in example_application.lua
author jbe
date Sun Jul 12 19:00:05 2015 +0200 (2015-07-12)
parents f132dc5b5bb0
children f4f6577742a1
files example_application.lua
line diff
     1.1 --- a/example_application.lua	Sun Jul 12 18:59:51 2015 +0200
     1.2 +++ b/example_application.lua	Sun Jul 12 19:00:05 2015 +0200
     1.3 @@ -61,12 +61,12 @@
     1.4        static_headers = {"Server: Moonbridge Example Server"},
     1.5        request_header_size_limit = 1024*1024,          -- maximum size of request headers
     1.6        request_body_size_limit   = 16*1024*1024*1024,  -- allow big file uploads
     1.7 -      idle_timeout              = 65,    -- maximum time until receiving the first byte of the request headera
     1.8 -      stall_timeout             = 60,    -- maximum time a client connection may be stalled
     1.9 -      request_header_timeout    = 120,   -- maximum time until receiving the remaining bytes of the request header
    1.10 -      response_timeout          = 3600,  -- time in which request body and response must be sent
    1.11 -      maximum_input_chunk_size  = 16384  -- tweaks behavior of request-body parser
    1.12 -      minimum_output_chunk_size = 1024   -- chunk size for chunked-transfer-encoding
    1.13 +      idle_timeout              = 65,     -- maximum time until receiving the first byte of the request headera
    1.14 +      stall_timeout             = 60,     -- maximum time a client connection may be stalled
    1.15 +      request_header_timeout    = 120,    -- maximum time until receiving the remaining bytes of the request header
    1.16 +      response_timeout          = 3600,   -- time in which request body and response must be sent
    1.17 +      maximum_input_chunk_size  = 16384,  -- tweaks behavior of request-body parser
    1.18 +      minimum_output_chunk_size = 1024    -- chunk size for chunked-transfer-encoding
    1.19      },
    1.20      function(request)
    1.21  

Impressum / About Us