This article describes the configuration file Boa. conf to explain: Note: The use of this article Boa version is: boa-0.94.14rc21.tar.gz (the latest version, the more used on the Internet is boa-0.94.13) Its boa. conf is in the folder: contribrpmboa. conf specifies that the boa log directory has two types of log files:
This article will explain the configuration file Boa. conf Of The boa Server:
Note: The Boa version used in this article is: boa-0.94.14rc21.tar.gz (the latest version, the most used online is boa-0.94.13)
Its boa. conf is in the folder: conTrIb/rpm/boa. conf
Specify the log directory of boa
Boa has two types of log files: it records the errors and its running status.
1) record the errors.ErrorLog/Var/log/boa/error_log
2) record its running status.AccessLog/Var/log/boa/access_log
Directory of the specified webpage
For example:DocumentRoot /Home/Httpd/Html
Indicates that the webpage files must be stored in this directory.
Default homepage name
For example:DirectoryIndEx Index.html
The default homepage name is index.html.
Specify the cgi script directory
For example:ScriptAlias/Cgi-bin // home/httpd/cgi-bin/
For the complete boa. conf content, see:
- # Boa v0.94 configuration file
- # File format has not changed from 0.93
- # File format has changed little from 0.92
- # version changes are noted in the comments
- #
- # 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 saw no reason to
- # introduce gratuitous differences.
-
- # $Id: boa.conf,v 1.2 2001/09/25 03:28:31 jnelson Exp $
-
- # 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, for example:
- #
- # boa -c /usr/local/boa
-
-
- # Port: The port Boa runs on. The default port for http servers is 80.
- # If it is less than 1024, the server must be started as root.
-
- Port 80
-
- # Listen: the Internet address to bind(2) to. If you leave it out,
- # it takes the behavior before 0.93.17.2, which is to bind to all
- # addresses (INADDR_ANY). You only get one \"Listen\" directive,
- # if you want service on multiple IP addresses, you have three choices:
- # 1. Run boa without a \"Listen\" directive
- # a. All addresses are treated the same; makes sense if the addresses
- # are localhost, ppp, and eth0.
- # b. Use the VirtualHost directive below to point requests to different
- # files. Should be good for a very large number of addresses (web
- # hosting clients).
- # 2. Run one copy of boa per IP address, each has its own configuration
- # with a \"Listen\" directive. No big deal up to a few tens of addresses.
- # Nice separation between clients.
- # The name you provide gets run through inet_aton(3), so you have to use dotted
- # quad notation. This configuration is too important to trust some DNS.
-
- #Listen 192.68.0.5
-
- # User: The name or UID the server should run as.
- # Group: The group name or GID the server should run as.
-
- User nobody
- Group nobody
-
- # ServerAdmin: The email address where server problems should be sent.
- # Note: this is not currently used, except as an environment variable
- # for CGIs.
-
- #ServerAdmin root@localhost
-
- # ErrorLog: 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.
- # If unset, defaults to /dev/stderr
-
- ErrorLog /var/log/boa/error_log
- # Please NOTE: Sending the logs to a pipe (\'|\'), as shown below,
- # is somewhat experimental and might fail under heavy load.
- # \"Usual libc implementations of printf will stall the whole
- # process if the receiving end of a pipe stops reading.\"
- #ErrorLog \"|/usr/sbin/cronolog --symlink=/var/log/boa/error_log /var/log/boa/error-%Y%m%d.log\"