From: Bradley Nicholes The bug reporting page and dev-httpd mailing list are not
provided to answer questions about configuration or running Apache.
Before you submit a bug report or request, first consult this document, the
- Frequently Asked Questions page and the other
+ Frequently Asked Questions page and the other
relevant documentation topics. If you still have a question or problem,
post it to the
novell.devsup.webserver newsgroup, where many
@@ -246,7 +246,7 @@
Apache is configured by files in the conf
directory. These are the same as files used to configure the
Unix version, but there are a few different directives for
- Apache on NetWare. See the Apache
+ Apache on NetWare. See the Apache
documentation for all the available directives.
The main differences in Apache for NetWare are:
MaxRequestsPerChild
+ href="/manual/mod/mpm_common.html#maxrequestsperchild">MaxRequestsPerChild
- Like the Unix directive, this controls how many requests
a worker thread will serve before exiting. The recommended default, MaxRequestsPerChild
0, causes the thread to continue servicing request indefinitely.
@@ -268,30 +268,30 @@
this directive always remain set to 0.
StartThreads -
+ href="/manual/mod/mpm_common.html#startthreads">StartThreads -
This directive tells the server how many
threads it should start initially. The recommended default is StartThreads
50.
MinSpareThreads -
+ href="/manual/mod/mpm_common.html#minsparethreads">MinSpareThreads -
This directive instructs the server to spawn additional worker threads
if the number of idle threads ever falls below this value. The recommended default is
MinSpareThreads 10.
MaxSpareThreads -
+ href="/manual/mod/mpm_common.html#maxsparethreads">MaxSpareThreads -
This directive instructs the server to begin terminating worker threads
if the number of idle threads ever exceeds this value. The recommended default is
MaxSpareThreads 100.
MaxThreads -
+ href="/manual/mod/mpm_netware.html#maxthreads">MaxThreads -
This directive limits the total number of work threads to a maximum
value. The recommended default is ThreadsPerChild 250.
ThreadStackSize
+ href="/manual/mod/mpm_netware.html#threadstacksize">ThreadStackSize
- This directive tells the server what size of stack to use
for the individual worker thread. The recommended default is
ThreadStackSize 65536.
\Apache2\modules directory. To
activate these, or other modules, the LoadModule directive
+ href="/manual/mod/mod_so.html#loadmodule">LoadModule directive
must be used. For example, to active the status module, use
the following (in addition to the status-activating
directives in access.conf):
@@ -321,7 +321,7 @@
Information on creating loadable + href="/manual/mod/mod_so.html#creating">creating loadable modules is also available.
@@ -333,7 +333,7 @@