Boa is currently being developed and tested on Linux/i386. The code is straightforward (more so than most other servers), so it should run easily on most modern Unix-alike platforms. Recent versions of Boa worked fine on FreeBSD, SunOS 4.1.4, Linux/SPARC, and HP-UX 9.0. Pre-1.2.0 Linux kernels may not work because of deficient mmap() implementations.
It should be very simple to install and use Boa:
tar -xvzf boa-0.93.tar.gz
, or for those of you with
an archaic non-GNU tar, gzip -cd < boa-0.93.tar.gz | tar -xvf -
src
directory../configure; touch .depend; make depend; make
nobody
(create if
you need to) is often a good selection for security purposes.
If you don't have (or choose not to use) root privileges, you
can not use port numbers less than 1024, nor can you switch user id.conf
directory within the
server root must hold your copy of the configuration file
boa.conf.mime.types
file.Start Boa. If you didn't build the right SERVER_ROOT into the
binary, you can specify it on the command line with the -c option
(command line takes precedence).
Example: ./boa -c /usr/local/boa
At this point the server should run and serve documents. If not, check the error_log file for clues.
Copy the binary to a safe place, and put the invocation into your system startup scripts. Use the same -c option you used in your initial tests.
This file is the sole configuration file for Boa. The directives in this file are defined in the DIRECTIVES section.
The MimeTypes <filename> defines what Content-Type Boa will send in an HTTP/1.0 or better transaction.
The default server root as #defined by
SERVER_ROOT in defines.h can be overridden on the
commandline using the -c option.
The server root must hold your local copy of the configuration
file boa.conf.
Example: /usr/sbin/boa -c /etc/boa
The Boa configuration file is parsed with a lex/yacc or flex/bison generated parser. If it reports an error, the line number will be provided; it should be easy to spot. The syntax of each of these rules is very simple, and they can occur in any order. Where possible, these directives mimic those of NCSA httpd 1.3; I (Paul Phillips) saw no reason to introduce gratuitous differences.
Note: the "ServerRoot" is not in this configuration file. It can be compiled into the server (see defines.h ) or specified on the command line with the -c option.
The following directives are contained in the boa.conf file, and most, but not all, are required.
This is the port that Boa runs on. The default port for http servers is 80. If it is less than 1024, the server must be started as root.
The name or UID the server should run as. For Boa to attempt this, the server must be started as root.
The group name or GID the server should run as. For Boa to attempt this, the server must be started as root.
The email address where server problems should be sent. Note: this is not currently used.
The location of the error log file. If this does not start with /, it is considered relative to the server root. Set to /dev/null if you don't want errors logged.
The location of the access log file. If this does not start with /, it is considered relative to the server root. Comment out or set to /dev/null (less effective) to disable access logging.
This is a logical switch and does not take any parameters. Comment out to disable.
The name of this server that should be sent back to clients if different than that returned by gethostname. VirtualHost This is a logical switch and does not take any parameters. Comment out to disable. Given DocumentRoot /var/www, requests on interface `A' or IP `IP-A' become /var/www/IP-A. Example: http://localhost/ becomes /var/www/127.0.0.1
The root directory of the HTML documents. If this does not start with /, it is considered relative to the server root.
The name of the directory which is appended onto a user's home directory if a user request is received.
Name of the file to use as a pre-written HTML directory index. Please make and use these files. On the fly creation of directory indexes can be slow.
Name of the program used to generate on-the-fly directory listings. The program must take one or two command-line arguments, the first being the directory to index (absolute), and the second, which is optional, should be the "title" of the document be. Comment out if you don't want on the fly directory listings. If this does not start with /, it is considered relative to the server root.
Number of KeepAlive requests to allow per connection. Comment out, or set to 0 to disable keepalive processing.
Number of seconds to wait before keepalive connections time out.
The location of the mime.types file. If this does not start with /, it is considered relative to the server root.
MIME type used if the file extension is unknown, or there is no file extension.
Associates a MIME type with an extension or extensions.
Redirect, Alias, and ScriptAlias all have the same semantics -- they match the beginning of a request and take appropriate action. Use Redirect for other servers, Alias for the same server, and ScriptAlias to enable directories for script execution.
allows you to tell clients about documents which used to exist in your server's namespace, but do not anymore. This allows you tell the clients where to look for the relocated document.
aliases one path to another. Of course, symbolic links in the file system work fine too.
maps a virtual path to a directory for serving scripts.
Boa has been designed to use the existing file system security. In boa.conf, the directives user and group determine who Boa will run as, if launched by root. By default, the user/group is nobody/nogroup. This allows quite a bit of flexibility. For example, if you want to disallow access to otherwise accessible directories or files, simply make them inaccessible to nobody/nogroup. If the user that Boa runs as is "boa" and the groups that "boa" belongs to include "web-stuff" then files/directories accessible by users with group "web-stuff" will also be accessible to Boa.