OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 22... Line 22...
22   22  
23 # Maximum number of concurrent requests. 23 # Maximum number of concurrent requests.
24 # If this number is exceeded, further requests are 24 # If this number is exceeded, further requests are
25 # queued until the number of running requests drops 25 # queued until the number of running requests drops
26 # below the limit again. 26 # below the limit again.
Line 27... Line 27...
27 option max_requests 1 27 option max_requests 3
28   28  
29 # Maximum number of concurrent connections. 29 # Maximum number of concurrent connections.
30 # If this number is exceeded, further TCP connection 30 # If this number is exceeded, further TCP connection
Line 47... Line 47...
47 # be called outside of the CGI prefix and do 47 # be called outside of the CGI prefix and do
48 # not need to be executable. 48 # not need to be executable.
49 # list interpreter ".php=/usr/bin/php-cgi" 49 # list interpreter ".php=/usr/bin/php-cgi"
50 # list interpreter ".cgi=/usr/bin/perl" 50 # list interpreter ".cgi=/usr/bin/perl"
Line 51... Line 51...
51   51  
52 # List of prefix->Lua handler mappings. -  
53 # Any request to an URL beneath the prefix -  
54 # will be dispatched to the associated Lua 52 # Lua url prefix and handler script.
55 # handler script. Lua support is disabled when 53 # Lua support is disabled if no prefix given.
56 # no handler mappings are specified. Lua prefix -  
57 # matches have precedence over the CGI prefix. 54 option lua_prefix /luci
Line 58... Line 55...
58 list lua_prefix "/cgi-bin/luci=/usr/lib/lua/luci/sgi/uhttpd.lua" 55 option lua_handler /usr/lib/lua/luci/sgi/uhttpd.lua
59   56  
60 # Specify the ubus-rpc prefix and socket path. 57 # Specify the ubus-rpc prefix and socket path.