From 1477c61e6fe9d8093fd84825e5e45ea1ed539acb Mon Sep 17 00:00:00 2001
From: Jeff Trawick
The following example sets an evironment variable called 'image' to a +
The following example sets an environment variable called 'image' to a value of '1' if the requested URI is an image file. Then, that environment variable is used to exclude those requests from the access log.
diff --git a/include/util_ldap.h b/include/util_ldap.h index 9ff969d846..0a90ff650d 100644 --- a/include/util_ldap.h +++ b/include/util_ldap.h @@ -360,7 +360,7 @@ APR_DECLARE_OPTIONAL_FN(int,uldap_ssl_supported,(request_rec *r)); /** * Init the LDAP cache * @param pool The pool to use to initialise the cache - * @param reqsize The size of the shared memory segement to request. A size + * @param reqsize The size of the shared memory segment to request. A size * of zero requests the max size possible from * apr_shmem_init() * @fn void util_ldap_cache_init(apr_pool_t *p, util_ldap_state_t *st) diff --git a/modules/lua/docs/basic-configuration.txt b/modules/lua/docs/basic-configuration.txt index c20983349f..b83769849f 100644 --- a/modules/lua/docs/basic-configuration.txt +++ b/modules/lua/docs/basic-configuration.txt @@ -81,7 +81,7 @@ mod_lua exports several additional directives: file. In general stat or forever is good production and stat or never - for deveopment. + for development. Examples: LuaCodeCache stat diff --git a/modules/metadata/mod_setenvif.c b/modules/metadata/mod_setenvif.c index 4649650ea5..7a16ca50a2 100644 --- a/modules/metadata/mod_setenvif.c +++ b/modules/metadata/mod_setenvif.c @@ -59,7 +59,7 @@ * * Examples: * - * To set the enviroment variable LOCALHOST if the client is the local + * To set the environment variable LOCALHOST if the client is the local * machine: * * SetEnvIf remote_addr 127.0.0.1 LOCALHOST diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c index db61537d0c..3de43bebd3 100644 --- a/modules/proxy/mod_proxy_fcgi.c +++ b/modules/proxy/mod_proxy_fcgi.c @@ -876,7 +876,7 @@ static int fcgi_do_request(apr_pool_t *p, request_rec *r, return HTTP_SERVICE_UNAVAILABLE; } - /* Step 2: Send Enviroment via FCGI_PARAMS */ + /* Step 2: Send Environment via FCGI_PARAMS */ rv = send_environment(conn, r, request_id); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server, diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index ea775d87ec..ed334996fb 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -25,7 +25,7 @@ * this MPM has a dedicated thread for handling both the Listenting sockets, * and all sockets that are in a Keep Alive status. * - * The MPM assumes the underlying apr_pollset implmentation is somewhat + * The MPM assumes the underlying apr_pollset implementation is somewhat * threadsafe. This currently is only compatible with KQueue and EPoll. This * enables the MPM to avoid extra high level locking or having to wake up the * listener thread when a keep-alive socket needs to be sent to it. diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 963dd0d1ef..41b75d3532 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -81,7 +81,7 @@ apr_pool_t *pconf; /* definitions from child.c */ void child_main(apr_pool_t *pconf); -/* Only one of these, the pipe from our parent, ment only for +/* Only one of these, the pipe from our parent, meant only for * one child worker's consumption (not to be inherited!) * XXX: decorate this name for the trunk branch, was left simplified * only to make the 2.2 patch trivial to read. -- 2.40.0