mongoose.1 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .\" Process this file with
  2. .\" groff -man -Tascii mongoose.1
  3. .\" $Id: mongoose.1,v 1.12 2008/11/29 15:32:42 drozd Exp $
  4. .Dd Aug 31, 2010
  5. .Dt mongoose 1
  6. .Sh NAME
  7. .Nm mongoose
  8. .Nd lightweight web server
  9. .Sh SYNOPSIS
  10. .Nm
  11. .Op Ar config_file
  12. .Op Ar OPTIONS
  13. .Nm
  14. .Fl A Ar htpasswd_file domain_name user_name password
  15. .Sh DESCRIPTION
  16. .Nm
  17. is small, fast and easy to use web server with CGI, SSL, MD5 authorization,
  18. and basic SSI support.
  19. .Pp
  20. .Nm
  21. does not detach from terminal, and uses current working directory
  22. as the web root, unless
  23. .Fl r
  24. option is specified.
  25. It is possible to specify multiple ports to listen on. For example, to make
  26. mongoose listen on HTTP port 80 and HTTPS port 443, one should start it as:
  27. .Nm
  28. .Fl s Ar cert.pem Fl p Ar 80,443s
  29. .Pp
  30. Unlike other web servers,
  31. .Nm
  32. does not require CGI scripts be put in a special directory. CGI scripts can
  33. be anywhere. CGI (and SSI) files are recognized by the file name pattern.
  34. .Nm
  35. uses shell-like glob patterns with the following syntax:
  36. .Bl -tag -compact -width indent
  37. .It **
  38. Matches everything
  39. .It *
  40. Matches everything but slash character, '/'
  41. .It ?
  42. Matches any character
  43. .It |
  44. Matches if pattern on the left side or the right side matches. Pattern on the
  45. left side is matched first
  46. .El
  47. All other characters in the pattern match themselves.
  48. .Pp
  49. If no arguments are given,
  50. .Nm
  51. searches for a configuration file called "mongoose.conf" in the same directory
  52. where mongoose binary is located. Alternatively, a file name could be
  53. specified in the command line. Format of the configuration file is the same
  54. as for the command line options except that each option must be specified
  55. on a separate line, leading dashes for option names must be omitted.
  56. Lines beginning with '#' and empty lines are ignored.
  57. .Pp
  58. .Sh OPTIONS
  59. .Bl -tag -width indent
  60. .It Fl A Ar htpasswd_file domain_name user_name password
  61. Add/edit user's password in the passwords file. Deleting users can be done
  62. with any text editor. Functionality is similar to Apache's
  63. .Ic htdigest
  64. utility.
  65. .It Fl C Ar cgi_pattern
  66. All files that fully match cgi_pattern are treated as CGI.
  67. Default pattern allows CGI files be
  68. anywhere. To restrict CGIs to certain directory, use e.g. "-C /cgi-bin/**.cgi".
  69. Default: "**.cgi|**.pl|**.php"
  70. .It Fl E Ar cgi_environment
  71. Extra environment variables to be passed to the CGI script in addition to
  72. standard ones. The list must be comma-separated list of X=Y pairs, like this:
  73. "VARIABLE1=VALUE1,VARIABLE2=VALUE2". Default: ""
  74. .It Fl G Ar put_delete_passwords_file
  75. PUT and DELETE passwords file. This must be specified if PUT or
  76. DELETE methods are used. Default: ""
  77. .It Fl I Ar cgi_interpreter
  78. Use
  79. .Ar cgi_interpreter
  80. as a CGI interpreter for all CGI scripts regardless script extension.
  81. Mongoose decides which interpreter to use by looking at
  82. the first line of a CGI script. Default: "".
  83. .It Fl M Ar max_request_size
  84. Maximum HTTP request size in bytes. Default: "16384"
  85. .It Fl P Ar protect_uri
  86. Comma separated list of URI=PATH pairs, specifying that given URIs
  87. must be protected with respected password files. Default: ""
  88. .It Fl R Ar authentication_domain
  89. Authorization realm. Default: "mydomain.com"
  90. .It Fl S Ar ssi_pattern
  91. All files that fully match ssi_pattern are treated as SSI.
  92. Unknown SSI directives are silently ignored. Currently, two SSI directives
  93. are supported, "include" and "exec". Default: "**.shtml|**.shtm"
  94. .It Fl a Ar access_log_file
  95. Access log file. Default: "", no logging is done.
  96. .It Fl d Ar enable_directory_listing
  97. Enable/disable directory listing. Default: "yes"
  98. .It Fl e Ar error_log_file
  99. Error log file. Default: "", no errors are logged.
  100. .It Fl g Ar global_passwords_file
  101. Location of a global passwords file. If set, per-directory .htpasswd files are
  102. ignored, and all requests must be authorised against that file. Default: ""
  103. .It Fl i Ar index_files
  104. Comma-separated list of files to be treated as directory index files.
  105. Default: "index.html,index.htm,index.cgi"
  106. .It Fl l Ar access_control_list
  107. Specify access control list (ACL). ACL is a comma separated list
  108. of IP subnets, each subnet is prepended by '-' or '+' sign. Plus means allow,
  109. minus means deny. If subnet mask is
  110. omitted, like "-1.2.3.4", then it means single IP address. Mask may vary
  111. from 0 to 32 inclusive. On each request, full list is traversed, and
  112. last match wins. Default setting is to allow all. For example, to allow only
  113. 192.168/16 subnet to connect, run "mongoose -0.0.0.0/0,+192.168/16".
  114. Default: ""
  115. .It Fl m Ar extra_mime_types
  116. Extra mime types to recognize, in form
  117. "extension1=type1,extension2=type2,...". Extension must include dot.
  118. Example: "mongoose -m .cpp=plain/text,.java=plain/text". Default: ""
  119. .It Fl p Ar listening_ports
  120. Comma-separated list of ports to listen on. If the port is SSL, a letter 's'
  121. must be appeneded, for example, "-p 80,443s" will open port 80 and port 443,
  122. and connections on port 443 will be SSL-ed. It is possible to specify an
  123. IP address to bind to. In this case, an IP address and a colon must be
  124. prepended to the port number. For example, to bind to a loopback interface
  125. on port 80 and to all interfaces on HTTPS port 443, use
  126. "mongoose -p 127.0.0.1:80,443s". Default: "8080"
  127. .It Fl r Ar document_root
  128. Location of the WWW root directory. Default: "."
  129. .It Fl s Ar ssl_certificate
  130. Location of SSL certificate file. Default: ""
  131. .It Fl t Ar num_threads
  132. Number of worker threads to start. Default: "10"
  133. .It Fl u Ar run_as_user
  134. Switch to given user's credentials after startup. Default: ""
  135. .It Fl w Ar url_rewrite_patterns
  136. Comma-separated list of URL rewrites in the form of
  137. "pattern=substitution,..." If the "pattern" matches some prefix
  138. of the requested URL, then matched prefix gets substituted with "substitution".
  139. For example, "-w /config=/etc,**.doc|**.rtf=/cgi-bin/handle_doc.cgi"
  140. will serve all URLs that start with "/config" from the "/etc" directory, and
  141. call handle_doc.cgi script for .doc and .rtf file requests.
  142. Default: ""
  143. .El
  144. .Pp
  145. .Sh EMBEDDING
  146. .Nm
  147. was designed to be embeddable into C/C++ applications. Since the
  148. source code is contained in single C file, it is fairly easy to embed it
  149. and follow the updates. Please refer to http://code.google.com/p/mongoose
  150. for details.
  151. .Pp
  152. .Sh EXAMPLES
  153. .Bl -tag -width indent
  154. .It Nm Fl r Ar /var/www Fl s Ar /etc/cert.pem Fl p Ar 8080,8043s
  155. Start serving files from /var/www. Listen on port 8080 for HTTP, and 8043
  156. for HTTPS connections. Use /etc/cert.pem as SSL certificate file.
  157. .It Nm Fl l Ar -0.0.0.0/0,+10.0.0.0/8,+1.2.3.4
  158. Deny connections from everywhere, allow only IP address 1.2.3.4 and
  159. all IP addresses from 10.0.0.0/8 subnet to connect.
  160. .It Nm Fl w Ar **=/my/script.cgi
  161. Invoke /my/script.cgi for every incoming request, regardless of the URL.
  162. .El
  163. .Pp
  164. .Sh COPYRIGHT
  165. .Nm
  166. is licensed under the terms of the MIT license.
  167. .Sh AUTHOR
  168. .An Sergey Lyubka Aq valenok@gmail.com .