Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>1) "enable_directory_listing" option</p> <p>2) <strike>Not built into Mongoose (at least not the version I have, which is about 6 months old).</strike> [EDIT:] Newer versions of Mongoose support <a href="https://github.com/valenok/mongoose/blob/master/UserManual.md#throttle" rel="nofollow">throttling</a> download speed. From the manual...</p> <blockquote> <p>Limit download speed for clients. throttle is a comma-separated list of key=value pairs, where key could be:</p> <pre><code>* limit speed for all connections x.x.x.x/mask limit speed for specified subnet uri_prefix_pattern limit speed for given URIs </code></pre> <p>The value is a floating-point number of bytes per second, optionally followed by a k or m character, meaning kilobytes and megabytes respectively. A limit of 0 means unlimited rate. The last matching rule wins. Examples:</p> <pre><code>*=1k,10.0.0.0/8=0 limit all accesses to 1 kilobyte per second, but give connections from 10.0.0.0/8 subnet unlimited speed /downloads/=5k limit accesses to all URIs in `/downloads/` to 5 kilobytes per secods. All other accesses are unlimited </code></pre> </blockquote> <p>3) "access_control_list" option. In the code <code>accept_new_connection</code> calls <code>check_acl</code> that compares the client's IP to a list of IPs to accept and/or ignore. From the manual...</p> <blockquote> <p>Specify access control list (ACL). ACL is a comma separated list of IP subnets, each subnet is prepended by '-' or '+' sign. Plus means allow, minus means deny. If subnet mask is omitted, like "-1.2.3.4", then it means single IP address. Mask may vary from 0 to 32 inclusive. On each request, full list is traversed, and last match wins. Default setting is to allow all. For example, to allow only 192.168/16 subnet to connect, run "mongoose -0.0.0.0/0,+192.168/16". Default: ""</p> </blockquote> <p><a href="http://code.google.com/p/mongoose/wiki/MongooseManual" rel="nofollow">http://code.google.com/p/mongoose/wiki/MongooseManual</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. COExcellent, thank you very much!
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload