Results 1 to 6 of 6
  1. #1

    Exclamation apache problem..

    Hi,
    we worked on apache 1.3 with mod_fastcgi.. aftere update to 2.2.14 version (wit mod_fastcgi) we have problem.. we have a few servers with this problem..
    Apache consumes suddenly all of memory and swapping (all allocated swap memory !), load is growing up and machines not responsible.. it's very often.. we don't know what to do with this.. We updated this stuff to 2.2 version because in 1.3 greaceful restarts wiht DA not working properly..
    Servers have installed 4gigs of rama and we using DirectAdmin
    Any conception ?

    some of ps:
    Code:
    apache    9943 17.8  7.4 330868 308536 ?       S    01:01   0:55 /usr/sbin/httpd -k start -DSSL
    apache    9944  0.0  7.4 330868 308228 ?       S    01:01   0:00 /usr/sbin/fcgi- -k start -DSSL
    apache    9946  0.6  7.8 435620 326764 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache    9947  0.6  7.8 431732 325672 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache   10002  0.5  7.9 433692 327832 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache   10003  0.5  7.8 433064 326124 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache   10070  0.5  7.8 432252 325764 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache   10077  0.5  7.8 431660 325688 ?       Sl   01:01   0:01 /usr/sbin/httpd -k start -DSSL
    apache   10627  0.6  7.8 433576 327652 ?       Sl   01:02   0:01 /usr/sbin/httpd -k start -DSSL
    apache   11290  0.7  7.9 436428 330548 ?       Sl   01:02   0:01 /usr/sbin/httpd -k start -DSSL

  2. #2
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    What mpm is used?

    /usr/local/apache/bin/httpd -L
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

  3. #3
    configure:
    Code:
    OPTIM="-DHARD_SERVER_LIMIT=32768 -DFD_SETSIZE=32768 " \
    ./configure \
            --enable-ssl \
            --prefix=/etc/httpd \
            --exec-prefix=/etc/httpd \
            --bindir=/usr/bin \
            --sbindir=/usr/sbin \
            --sysconfdir=/etc/httpd/conf \
            --enable-module=all \
            --enable-rewrite \
            --enable-suexec \
            --enable-proxy \
            --enable-expires \
            --with-mpm=worker \
            --with-suexec-docroot=/ \
            --with-suexec-caller=apache \
            --with-suexec-userdir=public_html \
            --with-suexec-logfile=/dev/null \
            --with-suexec-bin=/usr/sbin/suexec \
            --includedir=/usr/include/apache \
            --libexecdir=/usr/lib/apache \
            --datadir=/var/www \
            --localstatedir=/var \
            --disable-auth-dbm --disable-auth-db
    httpd -L:
    Code:
    <Directory (core.c)
            Container for directives affecting resources located in the specified directories
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <Location (core.c)
            Container for directives affecting resources accessed through the specified URL paths
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <VirtualHost (core.c)
            Container to map directives to a particular virtual host, takes one or more host addresses
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <Files (core.c)
            Container for directives affecting files matching specified patterns
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    <Limit (core.c)
            Container for authentication directives when accessed using specified HTTP methods
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    <LimitExcept (core.c)
            Container for authentication directives to be applied when any HTTP method other than those specified is used to access the resource
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    <IfModule (core.c)
            Container for directives based on existance of specified modules
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    <IfDefine (core.c)
            Container for directives based on existance of command line defines
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    <DirectoryMatch (core.c)
            Container for directives affecting resources located in the specified directories
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <LocationMatch (core.c)
            Container for directives affecting resources accessed through the specified URL paths
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <FilesMatch (core.c)
            Container for directives affecting files matching specified patterns
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    AuthType (core.c)
            An HTTP authorization type (e.g., "Basic")
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthName (core.c)
            The authentication realm (e.g. "Members Only")
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    Require (core.c)
            Selects which authenticated users or groups may access a protected space
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    Satisfy (core.c)
            access policy if both allow and require used ('all' or 'any')
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AddDefaultCharset (core.c)
            The name of the default charset to add to any Content-Type without one or 'Off' to disable
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AcceptPathInfo (core.c)
            Set to on or off for PATH_INFO to be accepted by handlers, or default for the per-handler preference
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AccessFileName (core.c)
            Name(s) of per-directory config files (default: .htaccess)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    DocumentRoot (core.c)
            Root directory of the document tree
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ErrorDocument (core.c)
            Change responses for HTTP errors
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AllowOverride (core.c)
            Controls what groups of directives can be configured by per-directory config files
            Allowed in *.conf only inside <Directory>, <Files> or <Location>
    Options (core.c)
            Set a number of attributes for a given directory
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    DefaultType (core.c)
            the default MIME type for untypable files
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    FileETag (core.c)
            Specify components used to construct a file's ETag
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    EnableMMAP (core.c)
            Controls whether memory-mapping may be used to read files
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    EnableSendfile (core.c)
            Controls whether sendfile may be used to transmit files
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    Protocol (core.c)
            Set the Protocol for httpd to use.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AcceptFilter (core.c)
            Set the Accept Filter to use for a protocol
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Port (core.c)
            Port was replaced with Listen in Apache 2.0
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    HostnameLookups (core.c)
            "on" to enable, "off" to disable reverse DNS lookups, or "double" to enable double-reverse DNS lookups
            Allowed in *.conf anywhere
    ServerAdmin (core.c)
            The email address of the server administrator
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerName (core.c)
            The hostname and port of the server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerSignature (core.c)
            En-/disable server signature (on|off|email)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    ServerRoot (core.c)
            Common directory of server-related files (logs, confs, etc.)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ErrorLog (core.c)
            The filename of the error log
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerAlias (core.c)
            A name or names alternately used to access the server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerPath (core.c)
            The pathname the server can be reached at
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Timeout (core.c)
            Timeout duration (sec)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ContentDigest (core.c)
            whether or not to send a Content-MD5 header with each request
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    UseCanonicalName (core.c)
            How to work out the ServerName : Port when constructing URLs
            Allowed in *.conf anywhere
    UseCanonicalPhysicalPort (core.c)
            Whether to use the physical Port when constructing URLs
            Allowed in *.conf anywhere
    Include (core.c)
            Name of the config file to be included
            Allowed in *.conf anywhere
    LogLevel (core.c)
            Level of verbosity in error logging
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    NameVirtualHost (core.c)
            A numeric IP address:port, or the name of a host
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerTokens (core.c)
            Determine tokens displayed in the Server: header - Min(imal), OS or Full
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LimitRequestLine (core.c)
            Limit on maximum size of an HTTP request line
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LimitRequestFieldsize (core.c)
            Limit on maximum size of an HTTP request header field
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LimitRequestFields (core.c)
            Limit (0 = unlimited) on max number of header fields in a request message
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LimitRequestBody (core.c)
            Limit (in bytes) on maximum size of request message body
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    LimitXMLRequestBody (core.c)
            Limit (in bytes) on maximum size of an XML-based request body
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    RLimitCPU (core.c)
            Soft/hard limits for max CPU usage in seconds
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    RLimitMEM (core.c)
            Soft/hard limits for max memory usage per process
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    RLimitNPROC (core.c)
            soft/hard limits for max number of processes per uid
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    LimitInternalRecursion (core.c)
            maximum recursion depth of internal redirects and subrequests
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ForceType (core.c)
            a mime type that overrides other configured type
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    SetHandler (core.c)
            a handler name that overrides any other configured handler
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    SetOutputFilter (core.c)
            filter (or ; delimited list of filters) to be run on the request content
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    SetInputFilter (core.c)
            filter (or ; delimited list of filters) to be run on the request body
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddOutputFilterByType (core.c)
            output filter name followed by one or more content-types
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AllowEncodedSlashes (core.c)
            Allow URLs containing '/' encoded as '%2F'
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    PidFile (core.c)
            A file for logging the server process ID
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScoreBoardFile (core.c)
            A file for Apache to maintain runtime process management information
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LockFile (core.c)
            The lockfile used when Apache needs to lock the accept() call
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MaxRequestsPerChild (core.c)
            Maximum number of requests a particular child serves before dying.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    CoreDumpDirectory (core.c)
            The location of the directory Apache changes to before dumping core
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AcceptMutex (core.c)
            Valid accept mutexes for this platform and MPM are: default, flock, fcntl, sysvsem, posixsem, pthread.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MaxMemFree (core.c)
            Maximum number of 1k blocks a particular childs allocator may hold.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ThreadStackSize (core.c)
            Size in bytes of stack used by threads handling client connections
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    TraceEnable (core.c)
            'on' (default), 'off' or 'extended' to trace request body content
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AuthUserFile (mod_authn_file.c)
            text file containing user IDs and passwords
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthDefaultAuthoritative (mod_authn_default.c)
            Set to 'Off' to allow access control to be passed along to lower modules if the UserID is not known to this module. (default is On).
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    order (mod_authz_host.c)
            'allow,deny', 'deny,allow', or 'mutual-failure'
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes Limit
    allow (mod_authz_host.c)
            'from' followed by hostnames or IP-address wildcards
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes Limit
    deny (mod_authz_host.c)
            'from' followed by hostnames or IP-address wildcards
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes Limit
    AuthGroupFile (mod_authz_groupfile.c)
            text file containing group names and member user IDs
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthzGroupFileAuthoritative (mod_authz_groupfile.c)
            Set to 'Off' to allow access control to be passed along to lower modules if the 'require group' fails. (default is On).
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthzUserAuthoritative (mod_authz_user.c)
            Set to 'Off' to allow access control to be passed along to lower modules if the 'require user' or 'require valid-user' statement is not met. (default: On).
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthzDefaultAuthoritative (mod_authz_default.c)
            Set to 'Off' to allow access control to be passed along to lower modules. (default is On.)
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthBasicProvider (mod_auth_basic.c)
            specify the auth providers for a directory or location
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    AuthBasicAuthoritative (mod_auth_basic.c)
            Set to 'Off' to allow access control to be passed along to lower modules if the UserID is not known to this module
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    XBitHack (mod_include.c)
            Off, On, or Full
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    SSIErrorMsg (mod_include.c)
            a string
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    SSITimeFormat (mod_include.c)
            a strftime(3) formatted string
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    SSIStartTag (mod_include.c)
            SSI Start String Tag
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSIEndTag (mod_include.c)
            SSI End String Tag
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSIUndefinedEcho (mod_include.c)
            String to be displayed if an echoed variable is undefined
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    SSIAccessEnable (mod_include.c)
            Whether testing access is enabled. Limited to 'on' or 'off'
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes Limit
    FilterDeclare (mod_filter.c)
            filter-name [, filter-type]
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    FilterProvider (mod_filter.c)
            filter-name, provider-name, dispatch--criterion, dispatch-match
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    FilterChain (mod_filter.c)
            list of filter names with optional [+-=!@]
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    FilterTrace (mod_filter.c)
            Debug level
            Allowed in *.conf anywhere
    FilterProtocol (mod_filter.c)
            filter-name [provider-name] protocol-args
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    CustomLog (mod_log_config.c)
            a file name, a custom log format string or format name, and an optional "env=" clause (see docs)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    TransferLog (mod_log_config.c)
            the filename of the access log
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LogFormat (mod_log_config.c)
            a log format string (see docs) and an optional format name
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    CookieLog (mod_log_config.c)
            the filename of the cookie log
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    BufferedLogs (mod_log_config.c)
            Enable Buffered Logging (experimental)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    PassEnv (mod_env.c)
            a list of environment variables to pass to CGI.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    SetEnv (mod_env.c)
            an environment variable name and optional value to pass to CGI.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    UnsetEnv (mod_env.c)
            a list of variables to remove from the CGI environment.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    ExpiresActive (mod_expires.c)
            Limited to 'on' or 'off'
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    ExpiresByType (mod_expires.c)
            a MIME type followed by an expiry date code
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    ExpiresDefault (mod_expires.c)
            an expiry date code
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    SetEnvIf (mod_setenvif.c)
            A header-name, regex and a list of variables.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    SetEnvIfNoCase (mod_setenvif.c)
            a header-name, regex and a list of variables.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    BrowserMatch (mod_setenvif.c)
            A browser regex and a list of variables.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    BrowserMatchNoCase (mod_setenvif.c)
            A browser regex and a list of variables.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    <IfVersion (mod_version.c)
            a comparison operator, a version (and a delimiter)
            Allowed in *.conf anywhere [no per-dir config] and in .htaccess
            when AllowOverride isn't None
    <Proxy (mod_proxy.c)
            Container for directives affecting resources located in the proxied location
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    <ProxyMatch (mod_proxy.c)
            Container for directives affecting resources located in the proxied location, in regular expression syntax
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyRequests (mod_proxy.c)
            on if the true proxy requests should be accepted
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyRemote (mod_proxy.c)
            a scheme, partial URL or '*' and a proxy server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyRemoteMatch (mod_proxy.c)
            a regex pattern and a proxy server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyPassInterpolateEnv (mod_proxy.c)
            Interpolate Env Vars in reverse Proxy
            Allowed in *.conf anywhere
    ProxyPass (mod_proxy.c)
            a virtual path and a URL
            Allowed in *.conf anywhere
    ProxyPassMatch (mod_proxy.c)
            a virtual path and a URL
            Allowed in *.conf anywhere
    ProxyPassReverse (mod_proxy.c)
            a virtual path and a URL for reverse proxy behaviour
            Allowed in *.conf anywhere
    ProxyPassReverseCookiePath (mod_proxy.c)
            Path rewrite rule for proxying cookies
            Allowed in *.conf anywhere
    ProxyPassReverseCookieDomain (mod_proxy.c)
            Domain rewrite rule for proxying cookies
            Allowed in *.conf anywhere
    ProxyBlock (mod_proxy.c)
            A list of names, hosts or domains to which the proxy will not connect
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyReceiveBufferSize (mod_proxy.c)
            Receive buffer size for outgoing HTTP and FTP connections in bytes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyIOBufferSize (mod_proxy.c)
            IO buffer size for outgoing HTTP and FTP connections in bytes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyMaxForwards (mod_proxy.c)
            The maximum number of proxies a request may be forwarded through.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    NoProxy (mod_proxy.c)
            A list of domains, hosts, or subnets to which the proxy will connect directly
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyDomain (mod_proxy.c)
            The default intranet domain name (in absence of a domain in the URL)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AllowCONNECT (mod_proxy.c)
            A list of ports which CONNECT may connect to
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyVia (mod_proxy.c)
            Configure Via: proxy header header to one of: on | off | block | full
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyErrorOverride (mod_proxy.c)
            use our error handling pages instead of the servers' we are proxying
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyPreserveHost (mod_proxy.c)
            on if we should preserve host header while proxying
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyTimeout (mod_proxy.c)
            Set the timeout (in seconds) for a proxied connection. This overrides the server timeout
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxyBadHeader (mod_proxy.c)
            How to handle bad header line in response: IsError | Ignore | StartBody
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    BalancerMember (mod_proxy.c)
            A balancer name and scheme with list of params
            Allowed in *.conf anywhere
    ProxyStatus (mod_proxy.c)
            Configure Status: proxy status to one of: on | off | full
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ProxySet (mod_proxy.c)
            A balancer or worker name with list of params
            Allowed in *.conf anywhere
    ProxyFtpDirCharset (mod_proxy.c)
            Define the character set for proxied FTP listings
            Allowed in *.conf anywhere
    ProxySCGISendfile (mod_proxy_scgi.c)
            The name of the X-Sendfile peudo response header or On or Off
            Allowed in *.conf anywhere
    ProxySCGIInternalRedirect (mod_proxy_scgi.c)
            Off if internal redirect responses should not be accepted
            Allowed in *.conf anywhere
    SSLMutex (mod_ssl.c)
            Valid SSLMutex mechanisms are: `none', `default', `flock:/path/to/file', `fcntl:/path/to/file', `sysvsem', `posixsem', `pthread', `file:/path/to/file', `sem'
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLPassPhraseDialog (mod_ssl.c)
            SSL dialog mechanism for the pass phrase query (`builtin', `|/path/to/pipe_program`, or `exec:/path/to/cgi_program')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLSessionCache (mod_ssl.c)
            SSL Session Cache storage (`none', `nonenotnull', `dbm:/path/to/file')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCryptoDevice (mod_ssl.c)
            SSL external Crypto Device usage (`builtin', `...')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLRandomSeed (mod_ssl.c)
            SSL Pseudo Random Number Generator (PRNG) seeding source (`startup|connect builtin|file:/path|exec:/path [bytes]')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLEngine (mod_ssl.c)
            SSL switch for the protocol engine (`on', `off')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCipherSuite (mod_ssl.c)
            Colon-delimited list of permitted SSL Ciphers (`XXX:...:XXX' - see manual)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLCertificateFile (mod_ssl.c)
            SSL Server Certificate file (`/path/to/file' - PEM or DER encoded)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCertificateKeyFile (mod_ssl.c)
            SSL Server Private Key file (`/path/to/file' - PEM or DER encoded)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCertificateChainFile (mod_ssl.c)
            SSL Server CA Certificate Chain file (`/path/to/file' - PEM encoded)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCACertificatePath (mod_ssl.c)
            SSL CA Certificate path (`/path/to/dir' - contains PEM encoded files)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLCACertificateFile (mod_ssl.c)
            SSL CA Certificate file (`/path/to/file' - PEM encoded)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLCADNRequestPath (mod_ssl.c)
            SSL CA Distinguished Name path (`/path/to/dir' - symlink hashes to PEM of acceptable CA names to request)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCADNRequestFile (mod_ssl.c)
            SSL CA Distinguished Name file (`/path/to/file' - PEM encoded to derive acceptable CA names to request)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCARevocationPath (mod_ssl.c)
            SSL CA Certificate Revocation List (CRL) path (`/path/to/dir' - contains PEM encoded files)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLCARevocationFile (mod_ssl.c)
            SSL CA Certificate Revocation List (CRL) file (`/path/to/file' - PEM encoded)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLVerifyClient (mod_ssl.c)
            SSL Client verify type (`none', `optional', `require', `optional_no_ca')
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLVerifyDepth (mod_ssl.c)
            SSL Client verify depth (`N' - number of intermediate certificates)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLSessionCacheTimeout (mod_ssl.c)
            SSL Session Cache object lifetime (`N' - number of seconds)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProtocol (mod_ssl.c)
            Enable or disable various SSL protocols(`[+-][SSLv2|SSLv3|TLSv1] ...' - see manual)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLHonorCipherOrder (mod_ssl.c)
            Use the server's cipher ordering preference
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLUserName (mod_ssl.c)
            Set user name to SSL variable value
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes AuthConfig
    SSLStrictSNIVHostCheck (mod_ssl.c)
            Strict SNI virtual host checking
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyEngine (mod_ssl.c)
            SSL switch for the proxy protocol engine (`on', `off')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyProtocol (mod_ssl.c)
            SSL Proxy: enable or disable SSL protocol flavors (`[+-][SSLv2|SSLv3|TLSv1] ...' - see manual)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCipherSuite (mod_ssl.c)
            SSL Proxy: colon-delimited list of permitted SSL ciphers (`XXX:...:XXX' - see manual)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyVerify (mod_ssl.c)
            SSL Proxy: whether to verify the remote certificate (`on' or `off')
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyVerifyDepth (mod_ssl.c)
            SSL Proxy: maximum certificate verification depth (`N' - number of intermediate certificates)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCACertificateFile (mod_ssl.c)
            SSL Proxy: file containing server certificates (`/path/to/file' - PEM encoded certificates)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCACertificatePath (mod_ssl.c)
            SSL Proxy: directory containing server certificates (`/path/to/dir' - contains PEM encoded certificates)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCARevocationPath (mod_ssl.c)
            SSL Proxy: CA Certificate Revocation List (CRL) path (`/path/to/dir' - contains PEM encoded files)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCARevocationFile (mod_ssl.c)
            SSL Proxy: CA Certificate Revocation List (CRL) file (`/path/to/file' - PEM encoded)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyMachineCertificateFile (mod_ssl.c)
            SSL Proxy: file containing client certificates (`/path/to/file' - PEM encoded certificates)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyMachineCertificatePath (mod_ssl.c)
            SSL Proxy: directory containing client certificates (`/path/to/dir' - contains PEM encoded certificates)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCheckPeerExpire (mod_ssl.c)
            SSL Proxy: check the peers certificate expiration date
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLProxyCheckPeerCN (mod_ssl.c)
            SSL Proxy: check the peers certificate CN
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SSLOptions (mod_ssl.c)
            Set one or more options to configure the SSL engine(`[+-]option[=value] ...' - see manual)
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Options
    SSLRequireSSL (mod_ssl.c)
            Require the SSL protocol for the per-directory context (no arguments)
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    SSLRequire (mod_ssl.c)
            Require a boolean expression to evaluate to true for granting access(arbitrary complex boolean expression - see manual)
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    SSLRenegBufferSize (mod_ssl.c)
            Configure the amount of memory that will be used for buffering the request body if a per-location SSL renegotiation is required due to changed access control requirements
            Allowed in *.conf only inside <Directory>, <Files> or <Location> and in .htaccess
            when AllowOverride includes AuthConfig
    SSLLog (mod_ssl.c)
            SSLLog directive is no longer supported - use ErrorLog.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    SSLLogLevel (mod_ssl.c)
            SSLLogLevel directive is no longer supported - use LogLevel.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    User (worker.c)
            Effective user id for this server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Group (worker.c)
            Effective group id for this server
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ChrootDir (worker.c)
            The directory to chroot(2) into
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ListenBacklog (worker.c)
            Maximum length of the queue of pending connections, as used by listen(2)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Listen (worker.c)
            A port number or a numeric IP address and a port number, and an optional protocol
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SendBufferSize (worker.c)
            Send buffer size in bytes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ReceiveBufferSize (worker.c)
            Receive buffer size in bytes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    StartServers (worker.c)
            Number of child processes launched at server startup
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MinSpareThreads (worker.c)
            Minimum number of idle threads, to handle request spikes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MaxSpareThreads (worker.c)
            Maximum number of idle threads
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MaxClients (worker.c)
            Maximum number of threads alive at the same time
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ThreadsPerChild (worker.c)
            Number of threads each child creates
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ServerLimit (worker.c)
            Maximum number of child processes for this run of Apache
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ThreadLimit (worker.c)
            Maximum number of worker threads per child process for this run of Apache - Upper limit for ThreadsPerChild
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    GracefulShutdownTimeout (worker.c)
            Maximum time in seconds to wait for child processes to complete transactions during shutdown
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    KeepAliveTimeout (http_core.c)
            Keep-Alive timeout duration (sec)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    MaxKeepAliveRequests (http_core.c)
            Maximum number of Keep-Alive requests per connection, or 0 for infinite
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    KeepAlive (http_core.c)
            Whether persistent connections should be On or Off
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AddCharset (mod_mime.c)
            a charset (e.g., iso-2022-jp), followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddEncoding (mod_mime.c)
            an encoding (e.g., gzip), followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddHandler (mod_mime.c)
            a handler name followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddInputFilter (mod_mime.c)
            input filter name (or ; delimited names) followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddLanguage (mod_mime.c)
            a language (e.g., fr), followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddOutputFilter (mod_mime.c)
            output filter name (or ; delimited names) followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AddType (mod_mime.c)
            a mime type followed by one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    DefaultLanguage (mod_mime.c)
            language to use for documents with no other language file extension
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    MultiviewsMatch (mod_mime.c)
            NegotiatedOnly (default), Handlers and/or Filters, or Any
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveCharset (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveEncoding (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveHandler (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveInputFilter (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveLanguage (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveOutputFilter (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RemoveType (mod_mime.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    TypesConfig (mod_mime.c)
            the MIME types config file
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ModMimeUsePathInfo (mod_mime.c)
            Set to 'yes' to allow mod_mime to use path info for type checking
            Allowed in *.conf only inside <Directory>, <Files> or <Location>
    ExtendedStatus (mod_status.c)
            "On" to enable extended status information, "Off" to disable
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    SeeRequestTail (mod_status.c)
            For verbose requests, "On" to see the last 63 chars of the request, "Off" (default) to see the first 63 in extended status display
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    AddIcon (mod_autoindex.c)
            an icon URL followed by one or more filenames
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddIconByType (mod_autoindex.c)
            an icon URL followed by one or more MIME types
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddIconByEncoding (mod_autoindex.c)
            an icon URL followed by one or more content encodings
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddAlt (mod_autoindex.c)
            alternate descriptive text followed by one or more filenames
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddAltByType (mod_autoindex.c)
            alternate descriptive text followed by one or more MIME types
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddAltByEncoding (mod_autoindex.c)
            alternate descriptive text followed by one or more content encodings
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    IndexOptions (mod_autoindex.c)
            one or more index options [+|-][]
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    IndexOrderDefault (mod_autoindex.c)
            {Ascending,Descending} {Name,Size,Description,Date}
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    IndexIgnore (mod_autoindex.c)
            one or more file extensions
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    AddDescription (mod_autoindex.c)
            Descriptive text followed by one or more filenames
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    HeaderName (mod_autoindex.c)
            a filename
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    ReadmeName (mod_autoindex.c)
            a filename
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    FancyIndexing (mod_autoindex.c)
            The FancyIndexing directive is no longer supported. Use IndexOptions FancyIndexing.
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride isn't None
    DefaultIcon (mod_autoindex.c)
            an icon URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    IndexStyleSheet (mod_autoindex.c)
            URL to style sheet
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    IndexHeadInsert (mod_autoindex.c)
            String to insert in HTML HEAD section
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    SuexecUserGroup (mod_suexec.c)
            User and group for spawned processes
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptLog (mod_cgid.c)
            the name of a log for script debugging info
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptLogLength (mod_cgid.c)
            the maximum length (in bytes) of the script debug log
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptLogBuffer (mod_cgid.c)
            the maximum size (in bytes) to record of a POST request
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptSock (mod_cgid.c)
            the name of the socket to use for communication with the cgi daemon.
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    CacheNegotiatedDocs (mod_negotiation.c)
            Either 'on' or 'off' (default)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LanguagePriority (mod_negotiation.c)
            space-delimited list of MIME language abbreviations
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    ForceLanguagePriority (mod_negotiation.c)
            Force LanguagePriority elections, either None, or Fallback and/or Prefer
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    DirectoryIndex (mod_dir.c)
            a list of file names
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    DirectorySlash (mod_dir.c)
            On or Off
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes Indexes
    Action (mod_actions.c)
            a media type followed by a script name
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    Script (mod_actions.c)
            a method followed by a script name
            Allowed in *.conf anywhere
    UserDir (mod_userdir.c)
            the public subdirectory in users' home directories, or 'disabled', or 'disabled username username...', or 'enabled username username...'
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Alias (mod_alias.c)
            a fakename and a realname
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptAlias (mod_alias.c)
            a fakename and a realname
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    Redirect (mod_alias.c)
            an optional status, then document to be redirected and destination URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    AliasMatch (mod_alias.c)
            a regular expression and a filename
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    ScriptAliasMatch (mod_alias.c)
            a regular expression and a filename
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    RedirectMatch (mod_alias.c)
            an optional status, then a regular expression and destination URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RedirectTemp (mod_alias.c)
            a document to be redirected, then the destination URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RedirectPermanent (mod_alias.c)
            a document to be redirected, then the destination URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteEngine (mod_rewrite.c)
            On or Off to enable or disable (default) the whole rewriting engine
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteOptions (mod_rewrite.c)
            List of option strings to set
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteBase (mod_rewrite.c)
            the base URL of the per-directory context
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteCond (mod_rewrite.c)
            an input string and a to be applied regexp-pattern
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteRule (mod_rewrite.c)
            an URL-applied regexp-pattern and a substitution URL
            Allowed in *.conf anywhere and in .htaccess
            when AllowOverride includes FileInfo
    RewriteMap (mod_rewrite.c)
            a ******* and a filename
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    RewriteLock (mod_rewrite.c)
            the filename of a lockfile used for inter-process synchronization
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    RewriteLog (mod_rewrite.c)
            the filename of the rewriting logfile
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    RewriteLogLevel (mod_rewrite.c)
            the level of the rewriting logfile verbosity (0=none, 1=std, .., 9=max)
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LoadModule (mod_so.c)
            a module name and the name of a shared object file to load it from
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    LoadFile (mod_so.c)
            shared object file or library to load into the server at runtime
            Allowed in *.conf only outside <Directory>, <Files> or <Location>
    httpd -l
    Code:
    Compiled in modules:
      core.c
      mod_authn_file.c
      mod_authn_default.c
      mod_authz_host.c
      mod_authz_groupfile.c
      mod_authz_user.c
      mod_authz_default.c
      mod_auth_basic.c
      mod_include.c
      mod_filter.c
      mod_log_config.c
      mod_env.c
      mod_expires.c
      mod_setenvif.c
      mod_version.c
      mod_proxy.c
      mod_proxy_connect.c
      mod_proxy_ftp.c
      mod_proxy_http.c
      mod_proxy_scgi.c
      mod_proxy_ajp.c
      mod_proxy_balancer.c
      mod_ssl.c
      worker.c
      http_core.c
      mod_mime.c
      mod_status.c
      mod_autoindex.c
      mod_asis.c
      mod_suexec.c
      mod_cgid.c
      mod_negotiation.c
      mod_dir.c
      mod_actions.c
      mod_userdir.c
      mod_alias.c
      mod_rewrite.c
      mod_so.c

  4. #4
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    mpm used is "worker.c". You can try prefork as it take less memory foot print. Prefork is generally be better for servers running with single or dual cpu systems.

    You can use --with-mpm=prefork to include this in apache.
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

  5. #5
    Hi!

    Quote Originally Posted by david510 View Post
    mpm used is "worker.c". You can try prefork as it take less memory foot print. Prefork is generally be better for servers running with single or dual cpu systems.

    You can use --with-mpm=prefork to include this in apache.
    Sorry, but mpm worker actually takes less memory than prefork (because worker uses threads instead of fork processes), nevertheless, there was a time when php wasn't threadsafe, and thus, it was better to run it with prefork, I hasn't tried php with worker for a long time, but that applies to modphp, not fastcgi anyway.

    funnyfun: what are you running on these servers? I mean: php(4/5), perl, RoR (ruby on rails), other. OS: ex. CentOS 5.3 Linux, Debian GNU/Linux lenny.

  6. #6
    it's webhosting.. debian4, php5-fcgi (5.2.9 actually), perl..

Similar Threads

  1. HELP! Problem with apache
    By webhostbeginner in forum Hosting Security and Technology
    Replies: 4
    Last Post: 11-05-2007, 10:33 AM
  2. Apache Problem
    By Wulki in forum Hosting Security and Technology
    Replies: 2
    Last Post: 11-29-2006, 05:19 PM
  3. php problem? Apache problem? Mime? Script can't do upload....
    By galacnet in forum Hosting Security and Technology
    Replies: 7
    Last Post: 05-30-2005, 11:15 AM
  4. problem with permissions being set apache.apache
    By VagrantHost in forum Hosting Software and Control Panels
    Replies: 0
    Last Post: 07-29-2004, 01:33 PM
  5. apache problem... switch from cgi to apache module URGENT!
    By needhelpcom in forum Hosting Security and Technology
    Replies: 8
    Last Post: 06-07-2004, 06:53 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •