|
These vhttpd.conf settings control various operating-system
related options.
-
User user
Sets the user to access files and run scripts/programs as.
It is important that this be a non-root user to help prevent
security violations such as reading protected files, etc., as the
web server generally must be started as root (to bind to port 80).
This should be the same low-permissions user that Texis was
installed as, so databases can be accessed by Vortex URLs.
In versions after 5.01.1170498000 20070203, the default is
the special token %TEXISOWNER%, which means the owner
of the texis executable in the install directory.
This avoids the need to separately configure the User
after setting the proper owner of Texis files at installation.
%TEXISOWNER% will not allow the user to be root,
if that is the texis owner for some reason.
In previous versions, %TEXISOWNER% was not supported,
and the default user was "nobody". -
Group group
Set the group to access files and run scripts/programs as.
The default is User's group. -
ServerName hostname
Set the hostname to report in the $SERVER_NAME
environment variable to CGI and Vortex scripts. The default is
the value reported by gethostname(). -
BindAddress hostname
Local hostname to listen for web requests on. If the local
machine has several addresses, the server can be set to listen on
only one address. The default (or * if given) is all local
addresses. -
Port number
TCP port number to listen on. The default is port 80. -
Timeout seconds
Maximum time to read/write data from/to a client. The default is
300 seconds. (The timeout set with this setting does not apply to
server-run Vortex scripts, where the script timeout is used
instead.) -
MaxBacklog number
Maximum pending-connections backlog to allow; further requests
will be refused or ignored depending on the OS. The default is
1024 or the operating-system defined limit. -
MaxClients num
Allow at most num simultaneous connections (clients) to the
server. When the limit is exceeded, an error will be noted in the
log, and further connections will be ignored until some current
connection(s) are completed.
The MaxClients setting allows a server to deal with an
overload from too many connections in a controllable manner.
Instead of allowing ever more connections and slowing further,
possibly taking the machine down, it waits for resources to become
available. The default value for MaxClients is 32. A
proper value for a given configuration depends on numerous
factors, such as the load from individual scripts, available RAM,
the hardware, OS etc. It is generally determined from
experimentation. Too low a value will unnecessarily delay clients
and show errors in the log. Too high a value may not allow the
server to recover from a heavy load or a malicious client. -
PassEnv var [var ...]
Pass the named environment variables from the server's environment
to CGI and VortexPath environments. Typically used to pass
things like LD_LIBRARY_PATH for CGIs using shared
libraries, since the default CGI environment is restricted. Use
caution to avoid passing secure information to insecure scripts.
Added in version 3.0.948500000 20000121. -
SetEnv var value
Set the given variable to the given value in the environment for
CGI and server-run (VortexPath) scripts. Use caution not
to pass secure information to insecure scripts, or overwrite
standard CGI variables like PATH_INFO. Added in version
3.0.948500000 20000121. -
UnsetEnv var [var ...]
Unset (remove) the given variable from the environment for CGI and
VortexPath. Use caution not to delete standard CGI
variables like PATH_INFO. Added in version 3.0.948500000 20000121. -
BadContentLengthWorkAround int
If bit 0 is set, work around issue with some browsers that send
extra unexpected data beyond Content-Length. This data is not
normally read, so the server's socket close at transaction end
causes a connection-reset to the browser, and the browser displays
an error page. The problem often appears on large POST-data
pages. If bit 1 is set, log the event. The default is 1
(i.e. work around issue but do not log). Added in version
5.01.1159494272 20060928. -
LogEmptyRequests boolean
If true, empty HTTP request lines from clients (zero bytes read)
will be logged to the error log. The default is off, as these
connections are usually benign unused connections from browsers.
No transfer log entry can be made, as there is no HTTP request.
Added in version 7.00.1350603750 20121018.
Copyright © Thunderstone Software Last updated: Mon Feb 18 10:28:15 EST 2013
|