]> granicus.if.org Git - apache/log
apache
16 years ago* Add checkfile2 at the end of the struct and not in the middle of the struct.
Ruediger Pluem [Wed, 5 Mar 2008 08:53:16 +0000 (08:53 +0000)]
* Add checkfile2 at the end of the struct and not in the middle of the struct.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633791 13f79535-47bb-0310-9956-ffa450edef68

16 years agoreturn AUTHZ_GRANTED instead of OK from the LDAP nested group checking.
Eric Covener [Tue, 4 Mar 2008 20:20:00 +0000 (20:20 +0000)]
return AUTHZ_GRANTED instead of OK from the LDAP nested group checking.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633620 13f79535-47bb-0310-9956-ffa450edef68

16 years agoCorrect typo in r633607
William A. Rowe Jr [Tue, 4 Mar 2008 20:06:01 +0000 (20:06 +0000)]
Correct typo in r633607

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633614 13f79535-47bb-0310-9956-ffa450edef68

16 years agoadd comment from event MPM's fdqueue ap_pop_pool() regarding
Chris Darroch [Tue, 4 Mar 2008 20:03:51 +0000 (20:03 +0000)]
add comment from event MPM's fdqueue ap_pop_pool() regarding
ABA problem and avoidance because only caller is single listener thread

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633612 13f79535-47bb-0310-9956-ffa450edef68

16 years agoEnable UAC transition from ApacheMonitor running as a vanilla user without priv
William A. Rowe Jr [Tue, 4 Mar 2008 19:44:22 +0000 (19:44 +0000)]
Enable UAC transition from ApacheMonitor running as a vanilla user without priv
into a copy runas administrator with permissions (closing the original monitor),
in response to any start/stop/restart request who's control permissions failed.
This happens to work on Win2000 and later, although it is actually needed in
Win2008 or Vista and later, where by default under UAC, the admin user actually
has no permissions to control services unless the app is run elevated.

We don't want to do this at start time, and assault the user with auth attempts
at login before they have even asked to use the features of the Monitor.  Once
we've made the transition, we'll leave the new monitor running elevated.  Some
branding with the "security" shield icon is actually recommended by the CUA, but
I'm neglecting this for the moment.

This patch drops the single instance mutex for a search of existing windows of
our window's class & title, which is localized to the current session and just fine
for the purpose of restricting multiple invocations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633607 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSession cache interface redesign, Part 7:
Joe Orton [Tue, 4 Mar 2008 16:14:10 +0000 (16:14 +0000)]
Session cache interface redesign, Part 7:

Clean up provider interface, removing use of mod_ssl-specific types:

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Replace BOOL
  with apr_status_t, UCHAR with unsigned char; use 'unsigned int' for
  idlen; constify id arguments; remove pool argument from ->status.

* modules/ssl/ssl_scache_dc.c, modules/ssl/ssl_scache_memcache,
  modules/ssl/ssl_scache_shmcb.c, modules/ssl_scache_dbm.c: Update
  accordingly.

* modules/ssl/ssl_scache.c (ssl_scache_retrieve, ssl_scache_store):
  Adjust for BOOL->apr_status_t change.
  (ssl_ext_status_hook): Update for dropped pool argument.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633526 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* lfi is already a pointer in contrast fi which was used before.
Ruediger Pluem [Mon, 3 Mar 2008 17:02:19 +0000 (17:02 +0000)]
* lfi is already a pointer in contrast fi which was used before.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633174 13f79535-47bb-0310-9956-ffa450edef68

16 years agocore: fix SymlinksIfOwnerMatch checking:
Nick Kew [Mon, 3 Mar 2008 06:13:59 +0000 (06:13 +0000)]
core: fix SymlinksIfOwnerMatch checking:
  (1) Fix Origin checking (PR 36783 - Robert L Mathews)
  (2) Check ownership if both FollowSymlinks and SymlinksIfOwnerMatch are set

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632947 13f79535-47bb-0310-9956-ffa450edef68

16 years agoA large refactoring, but no behavior change;
William A. Rowe Jr [Sun, 2 Mar 2008 23:57:11 +0000 (23:57 +0000)]
A large refactoring, but no behavior change;

replace all relevant ascii strxxx fn's with _tcsxxx macros and encode relevant text
with the _T() macro wrapper, permitting /D UNICODE builds in place of /D _MCBS
builds in use today.  This allows for internationalized unicode service names and
textual modification.  Since this is win32 only, using APR style utf-8-ization is silly.

Because today this module simply isn't loadable on Win95-ME, nobody has actually
complained, and we really have no desire to support such a dangerous OS in the
wild of the internet, the unicode build should become the default.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632885 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* If the cached entity contained Cache-Control: no-cache, treat it as stale
Ruediger Pluem [Sun, 2 Mar 2008 12:35:33 +0000 (12:35 +0000)]
* If the cached entity contained Cache-Control: no-cache, treat it as stale
  causing revalidation.

PR: 44511

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632749 13f79535-47bb-0310-9956-ffa450edef68

16 years agomod_rewrite: Check all files used by DBM maps for freshness, mod_rewrite
Niklas Edmundsson [Sun, 2 Mar 2008 09:58:56 +0000 (09:58 +0000)]
mod_rewrite: Check all files used by DBM maps for freshness, mod_rewrite
didn't pick up on updated sdbm maps due to this.
PR41190 [Niklas Edmundsson]

NOTE: Only tested on httpd-2.2.8.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632730 13f79535-47bb-0310-9956-ffa450edef68

16 years agoTransformations.
Erik Abele [Sat, 1 Mar 2008 17:46:35 +0000 (17:46 +0000)]
Transformations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632635 13f79535-47bb-0310-9956-ffa450edef68

16 years agoFix typo in IP address.
Erik Abele [Sat, 1 Mar 2008 17:43:02 +0000 (17:43 +0000)]
Fix typo in IP address.

Submitted privately by: Markus Weber <Weber.Markus akdb.de>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632632 13f79535-47bb-0310-9956-ffa450edef68

16 years agobuildfluff
Vincent Bray [Sat, 1 Mar 2008 08:25:03 +0000 (08:25 +0000)]
buildfluff

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632566 13f79535-47bb-0310-9956-ffa450edef68

16 years agolink to the wiki
Vincent Bray [Sat, 1 Mar 2008 08:22:18 +0000 (08:22 +0000)]
link to the wiki

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632564 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAdd in new option for rotatelogs: -f
Jim Jagielski [Fri, 29 Feb 2008 15:32:38 +0000 (15:32 +0000)]
Add in new option for rotatelogs: -f
This forces rotatelogs to create the logfile as soon
as started not as soon as it sees it's first line
of input.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632355 13f79535-47bb-0310-9956-ffa450edef68

16 years agoWhen sending a proxy request of the form
Martin Kraemer [Fri, 29 Feb 2008 12:15:56 +0000 (12:15 +0000)]
When sending a proxy request of the form
  GET http://[3ffe:1:1001:3000:230:5ff:fe05:3c3c]/server-status HTTP/1.0
through the httpd-2.x mod_proxy.c code, while a directive
  ProxyDomain .my.dom.ain
is in effect, the request is redirected to
  Location: http://[3ffe:1:1001:3000:230:5ff:fe05:3c3c.my.dom.ain]/server-status

The patch fixes this bug, by testing whether the hostname part of the
unparsed_uri contains colon characters (which is the case only for
IPv6 literals).

This patch is also a candidate for httpd-2.0 and httpd-2.2

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632304 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* Do not retry a direct connection if the request has a request body
Ruediger Pluem [Wed, 27 Feb 2008 21:35:39 +0000 (21:35 +0000)]
* Do not retry a direct connection if the request has a request body

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631735 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* Do not segfault when either no mutex is needed either because no session
Ruediger Pluem [Wed, 27 Feb 2008 19:55:25 +0000 (19:55 +0000)]
* Do not segfault when either no mutex is needed either because no session
  cache is configured or the session is thread safe.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631693 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAs of r631363, all applied
Jim Jagielski [Tue, 26 Feb 2008 19:54:00 +0000 (19:54 +0000)]
As of r631363, all applied

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631364 13f79535-47bb-0310-9956-ffa450edef68

16 years agotweak to include recently added TranslateAllMimeTypes option to this
Eric Covener [Tue, 26 Feb 2008 19:18:35 +0000 (19:18 +0000)]
tweak to include recently added TranslateAllMimeTypes option to this
AP_INIT_ITERATE parameter

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631342 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSession cache interface redesign, Part 6:
Joe Orton [Tue, 26 Feb 2008 16:57:56 +0000 (16:57 +0000)]
Session cache interface redesign, Part 6:

Move mutex handling up out of the session cache providers:

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Add name and
  flags fields.  Define MODSSL_SESSCACHE_FLAG_NOTMPSAFE constant.

* modules/ssl/ssl_scache.c (ssl_scache_store, ssl_scache_retrieve,
  ssl_scache_remove, ssl_ext_status_hook): Lock and release the mutex
  around provider calls, if necessary.

* modules/ssl/ssl_engine_mutex.c (ssl_mutex_init): Do nothing if no
  session cache is configured, or the session cache does not require a
  mutex.  Otherwise, fail if no mutex is configured and the session
  cache *does* require a mutex.
  (ssl_mutex_on, ssl_mutex_off): Remove checks for mutex mode;
  functions now invoked only if necessary.

* modules/ssl/ssl_scache_dc.c, modules/ssl/ssl_scache_memcache: Set
  name and flags fields in provider structures.

* modules/ssl/ssl_scache_shmcb.c, modules/ssl_scache_dbm.c: Remove
  mutex handling through; set name and flags fields in provider
  structures; mark both as unsafe for concurrent access in flags.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631297 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_memcache.c (mc_session_id2sz): Fix memcache
Joe Orton [Tue, 26 Feb 2008 15:25:51 +0000 (15:25 +0000)]
* modules/ssl/ssl_scache_memcache.c (mc_session_id2sz): Fix memcache
  key id generation by passing the correct length to snprintf (it
  was NUL terminating at the second byte with len=2);

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631254 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache.c (ssl_ext_status_hook): Do nothing
Joe Orton [Tue, 26 Feb 2008 07:56:46 +0000 (07:56 +0000)]
* modules/ssl/ssl_scache.c (ssl_ext_status_hook): Do nothing
  if no provider is configured.

Submitted by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631119 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAllow compilation with pre-c99 compilers
Martin Kraemer [Tue, 26 Feb 2008 07:24:40 +0000 (07:24 +0000)]
Allow compilation with pre-c99 compilers

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631107 13f79535-47bb-0310-9956-ffa450edef68

16 years agoTypos
Vincent Bray [Tue, 26 Feb 2008 01:23:19 +0000 (01:23 +0000)]
Typos

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631054 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_remove): Use and clear
Joe Orton [Mon, 25 Feb 2008 21:39:13 +0000 (21:39 +0000)]
* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_remove): Use and clear
  the temporary pool from the context.  (missed in r630974)

Found by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631006 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSession cache interface redesign, Part 5:
Joe Orton [Mon, 25 Feb 2008 21:28:09 +0000 (21:28 +0000)]
Session cache interface redesign, Part 5:

Use the ap_provider interface for session cache storage providers.

* modules/ssl/mod_ssl.c (modssl_register_scache): New function.
  (ssl_register_hooks): Call it.

* modules/ssl/ssl_private.h: Define MODSSL_SESSCACHE_PROVIDER_GROUP
  and MODSSL_SESSCACHE_PROVIDER_VERSION constants.
  Remove ssl_scmode_t type.  Change nSessionCacheMode in
  SSLModConfigRec into a long sesscache_mode, storing the OpenSSL
  SSL_SESS_CACHE_* flags directly.

* modules/ssl/ssl_engine_config.c (ssl_config_global_create): Set
  sesscache_mode to SSL_SESS_CACHE_OFF by default.
  (ssl_cmd_SSLSessionCache): Remove ifdef spaghetti; fetch configured
  session cache by provider name.  Set mc->sesscache_mode for
  configured providers.

* modules/ssl/ssl_engine_init.c (ssl_init_ctx_session_cache): Use the
  configured mode flags directly from mc->sesscache_mode.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@631000 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_create): Fix for
Joe Orton [Mon, 25 Feb 2008 20:59:13 +0000 (20:59 +0000)]
* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_create): Fix for
  r630974; create the subpool.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630990 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSession cache interface redesign, Part 4:
Joe Orton [Mon, 25 Feb 2008 20:09:38 +0000 (20:09 +0000)]
Session cache interface redesign, Part 4:

Move provider-specific configuration handling down into the provider
code.  Eliminate all use of SSLModConfigRec within provider code.

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Add 'create'
  function which creates and configures the cache provider, before
  initialisation.  Change 'init' function to take the context pointer
  as an input parameter, and reorder to be first.

* modules/ssl/ssl_scache.c (ssl_scache_init): Adjust accordingly.

* modules/ssl/ssl_scache_memcache.c (struct context): Add servers
  field.
  (ssl_scache_mc_create): New function.
  (ssl_scache_mc_init): Use servers from context not SSLModConfigRec.

* modules/ssl/ssl_scache_dbm.c (struct context): Define.
  (ssl_scache_dbm_create): New function.
  (ssl_scache_dbm_init, ssl_scache_dbm_kill): Adjust to use filename
  and pool from context.
  (ssl_scache_dbm_store, ssl_scache_dbm_retrieve,
  ssl_scache_dbm_status): Use filename from context.  Use context pool
  for temp storage of the DBM object, and clear before use.
  (ssl_scache_dbm_expire): Remove static tLast; use last_expiry from
  context.  Use context pool for temp storage and clear before use.

* modules/ssl/ssl_scache_dc.c (struct context): Add target field.
  (ssl_scache_dc_init, ssl_scache_dc_status): Use target from context.

* modules/ssl/ssl_scache_shmcb.c (struct context): Add data_file,
  shm_size fields.
  (ssl_scache_shmcb_create): New function; moved argument parsing
  logic from ssl_cmd_SSLSessionCache
  (ssl_scache_shmcb_init, ssl_scache_shmcb_status): Use config from
  context.

* modules/ssl/ssl_engine_config.c (ssl_config_global_create): Remove
  handling of old provider-specific fields.
  (ssl_cmd_SSLSessionCache): Call provider ->create function to parse
  the argument and create provider-specific context structure.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630974 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_engine_init.c (ssl_init_FindCAList): Cast return
Joe Orton [Mon, 25 Feb 2008 14:18:32 +0000 (14:18 +0000)]
* modules/ssl/ssl_engine_init.c (ssl_init_FindCAList): Cast return
value of sk_X509_NAME_set_cmp_func to void, to avoid warnings with
recent version of OpenSSL.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630858 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache.c (ssl_scache_init): Reformat
Joe Orton [Mon, 25 Feb 2008 10:56:37 +0000 (10:56 +0000)]
* modules/ssl/ssl_scache.c (ssl_scache_init): Reformat
code and update the comment.   No functional change.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630805 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_private.h: Specify extern storage for
Joe Orton [Mon, 25 Feb 2008 10:36:25 +0000 (10:36 +0000)]
* modules/ssl/ssl_private.h: Specify extern storage for
modssl_sesscache_provider objects.

Found by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630795 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_retrieve): Set *destlen
Joe Orton [Mon, 25 Feb 2008 10:06:28 +0000 (10:06 +0000)]
* modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_retrieve): Set *destlen
  on success.

* modules/ssl/ssl_scache_dc.c (ssl_scache_dc_retrieve): Likewise.

Found by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630787 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_shmcb.c (shmcb_subcache_retrieve,
Joe Orton [Mon, 25 Feb 2008 10:04:37 +0000 (10:04 +0000)]
* modules/ssl/ssl_scache_shmcb.c (shmcb_subcache_retrieve,
  shmcbc_subcache_remove): Restore check for idx->removed flag.

Found by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630786 13f79535-47bb-0310-9956-ffa450edef68

16 years agochanged comments; no functional change.
Guenter Knauf [Sat, 23 Feb 2008 13:52:54 +0000 (13:52 +0000)]
changed comments; no functional change.
Submitted by Kaspar Brand.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630436 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* Add hint to PR in comment. No functional change.
Ruediger Pluem [Fri, 22 Feb 2008 23:05:37 +0000 (23:05 +0000)]
* Add hint to PR in comment. No functional change.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630350 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* Second part of fix for PR 44402:
Ruediger Pluem [Fri, 22 Feb 2008 22:58:42 +0000 (22:58 +0000)]
* Second part of fix for PR 44402:

  - Fix the same race condition in event MPM.
  - Slightly optimize code in worker MPM by removing the need for an additional
    dereference operation.
  - Do some word smithing on the CHANGES entry.

PR: 44402
Submitted by: Basant Kumar Kukreja <basant.kukreja sun.com>
Reviewed by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630348 13f79535-47bb-0310-9956-ffa450edef68

16 years agoWorker MPM: fix race condition
Nick Kew [Fri, 22 Feb 2008 22:17:42 +0000 (22:17 +0000)]
Worker MPM: fix race condition
PR44402: reported and fixed by Basant Kumar Kukreja

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630335 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSession cache interface redesign, Part 3:
Joe Orton [Fri, 22 Feb 2008 21:09:40 +0000 (21:09 +0000)]
Session cache interface redesign, Part 3:

Move provider-private context out of SSLModConfigRec and into an
opaque context pointer.  Use real error propagation in the ->init
functions rather than ssl_die().

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Take a
  context out-parameter from ->init, and return an apr_status_t.
  Add context pointer as first arg for the other function types.
  (SSLModConfigRec): Remove tSessionCacheData* fields; add
  sesscache_context field.

* modules/ssl/ssl_scache.c (ssl_scache_init): Move once-per-process
  invocation check back into here.
  (ssl_scache_*): Adjust to use context pointer.

* modules/ssl/ssl_scache_shmcb.c, modules/ssl/ssl_scache_dc.c,
  modules/ssl/ssl_scache_dbm.c: Adjust all implementations to use
  opaque context pointer.

* modules/ssl/ssl_scache_memcache.c: Move memcache context into the
  context structure rather than using global state.

* modules/ssl/ssl_engine_config.c: Remove handling of
  pSessionCacheData* fields in SSLModConfigRec.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630323 13f79535-47bb-0310-9956-ffa450edef68

16 years agoMove SSL session data deserialization up out of the session cache
Joe Orton [Fri, 22 Feb 2008 19:58:39 +0000 (19:58 +0000)]
Move SSL session data deserialization up out of the session cache
storage providers; includes a significant change to the shmcb storage
structure:

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Change
  retrieve function to take dest/destlen output buffer, to take a
  constant id paramater, and to return a BOOL.

* modules/ssl/ssl_scache.c (ssl_scache_retrieve): Update accordingly,
  perform SSL deserialization here.

* modules/ssl/ssl_scache_dc.c (ssl_scache_dc_retrieve),
  modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_retrieve),
  modules/ssl/ssl_scache_memcache.c (ssl_scache_mc_retrieve):
  Update accordingly.

* modules/ssl/ssl_scache_shmcb.c: Store the whole ID in the cache
  before the data, so that each index can be compared against the
  requested ID without deserializing the data.  This requires approx
  20% extra storage per session in the common case, though should
  reduce CPU overhead in some retrieval paths.
  (SHMCBIndex): Replace s_id2 field with id_len.
  (shmcb_cyclic_memcmp): New function.
  (ssl_scache_shmcb_init): Change the heuristics to allow for increase
  in per-session storage requirement.
  (ssl_scache_shmcb_retrieve): Drop requirement on ID length.
  (shmcb_subcache_store): Store the ID in the cyclic buffer.
  (shmcb_subcache_retrieve, shmcb_subcache_remove): Compare against
  the stored ID rather than deserializing the data.
  (ssl_scache_shmcb_retrieve, ssl_scache_shmcb_store): Update
  accordingly.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630307 13f79535-47bb-0310-9956-ffa450edef68

16 years agoA note about SSL handshake data and mod_logio
Eric Covener [Fri, 22 Feb 2008 18:57:02 +0000 (18:57 +0000)]
A note about SSL handshake data and mod_logio

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630289 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* modules/ssl/ssl_scache_shmcb.c: Describe the data structures
Joe Orton [Fri, 22 Feb 2008 15:48:28 +0000 (15:48 +0000)]
* modules/ssl/ssl_scache_shmcb.c: Describe the data structures
used by shmcb (hopefully :), before some invasive surgery.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630228 13f79535-47bb-0310-9956-ffa450edef68

16 years agoMove SSL session data serialization up out of the session cache
Joe Orton [Fri, 22 Feb 2008 12:00:49 +0000 (12:00 +0000)]
Move SSL session data serialization up out of the session cache
storage providers:

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Change
  'store' interface to take a data/length pair rather than an
  SSL_SESSION pointer.

* modules/ssl/ssl_scache.c (ssl_scache_store): Serialize the SSL
  session here and pass down the raw DER.

* modules/ssl/ssl_scache_dc.c, modules/ssl_scache_mc.c,
  modules/ssl_scache_shmcb.c, modules/ssl_scache_dbm.c: Adjust ->store
  implementations accordingly, removing the four sets of identical
  code doing the i2d dance.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630168 13f79535-47bb-0310-9956-ffa450edef68

16 years agoRe-implement the SSL session cache abstraction using a vtable; first
Joe Orton [Fri, 22 Feb 2008 11:36:51 +0000 (11:36 +0000)]
Re-implement the SSL session cache abstraction using a vtable; first
step towards use of the ap_provider interface:

* modules/ssl/ssl_private.h (modssl_sesscache_provider): Add new
  vtable type.
  (SSLModConfigRec): Reference the vtable here.
  Replace all the ssl_scache_* prototypes with provider vtable objects.

* modules/ssl/ssl_scache.c (ssl_scache_init, ssl_scache_kill,
  ssl_scache_retrieve, ssl_scache_store, ssl_scache_remove,
  ssl_ext_status_hook): Use callbacks from vtable rather than ifdef
  spaghetti.

* modules/ssl/ssl_engine_init.c (ssl_init_ctx_session_cache):
  Only install the OpenSSL callbacks if a vtable is configured.

* modules/ssl/ssl_engine_config.c (ssl_cmd_SSLSessionCache): Set up
  vtable pointer.

* modules/ssl/ssl_scache_dc.c, modules/ssl_scache_mc.c: Adjust to make
  implementations static, and add vtable definition.

* modules/ssl_scache_shmcb.c: Likewise; also move the init
  one-per-process requirement down here.

* modules/ssl_scache_dbm.c: Likewise; also (temporarily) use a local
  subpool in the store callback.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630163 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* support/htpasswd.c (seed_rand): Fix compiler warning.
Joe Orton [Fri, 22 Feb 2008 10:14:07 +0000 (10:14 +0000)]
* support/htpasswd.c (seed_rand): Fix compiler warning.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630139 13f79535-47bb-0310-9956-ffa450edef68

16 years agobackported in r629983
Jim Jagielski [Thu, 21 Feb 2008 20:45:33 +0000 (20:45 +0000)]
backported in r629983

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629985 13f79535-47bb-0310-9956-ffa450edef68

16 years agorename mod_charset_lite CharsetOption ForceAllMimeTypes to
Eric Covener [Thu, 21 Feb 2008 18:43:24 +0000 (18:43 +0000)]
rename mod_charset_lite CharsetOption ForceAllMimeTypes to
TranslateAllMimeTypes (only about 18 hours old)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629915 13f79535-47bb-0310-9956-ffa450edef68

16 years agotypo
Jim Jagielski [Thu, 21 Feb 2008 17:30:39 +0000 (17:30 +0000)]
typo

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629879 13f79535-47bb-0310-9956-ffa450edef68

16 years ago *) mod_charset_lite: Add ForceAllMimeTypes sub-option to
Eric Covener [Wed, 20 Feb 2008 21:17:17 +0000 (21:17 +0000)]
  *) mod_charset_lite: Add ForceAllMimeTypes sub-option to
     CharsetOptions, allowing the administrator to skip the
     mimetype checking that precedes translation.
     PR 44458 [Eric Covener]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629615 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* Set aside buckets that remain unprocessed in the filter context for the
Ruediger Pluem [Wed, 20 Feb 2008 13:44:22 +0000 (13:44 +0000)]
* Set aside buckets that remain unprocessed in the filter context for the
  next filter pass.

PR: 44447
Submitted by: Harald Niesche <harald brokenerror.de>
Reviewed by: rpluem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629456 13f79535-47bb-0310-9956-ffa450edef68

16 years agoFix printing of error message.
Paul Querna [Tue, 19 Feb 2008 20:39:32 +0000 (20:39 +0000)]
Fix printing of error message.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629218 13f79535-47bb-0310-9956-ffa450edef68

16 years agoImprove generation of the seed to rand, by using apr_generate_random_bytes,
Paul Querna [Tue, 19 Feb 2008 17:05:26 +0000 (17:05 +0000)]
Improve generation of the seed to rand, by using apr_generate_random_bytes,
rather than the current time as a seed.

PR: 31440

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629164 13f79535-47bb-0310-9956-ffa450edef68

16 years agoImprove salt string generation.
Paul Querna [Tue, 19 Feb 2008 16:55:47 +0000 (16:55 +0000)]
Improve salt string generation.

PR: 31440
Submited by: Andreas Krennmair <ak synflood.at>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629159 13f79535-47bb-0310-9956-ffa450edef68

16 years agoIn the case where we have only 1 pattern, then we
Jim Jagielski [Mon, 18 Feb 2008 20:45:34 +0000 (20:45 +0000)]
In the case where we have only 1 pattern, then we
can safely be quick, no matter what.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@628864 13f79535-47bb-0310-9956-ffa450edef68

16 years agoNote 'rm: conftest.dSYM: is a directory' messages
Jim Jagielski [Mon, 18 Feb 2008 14:56:06 +0000 (14:56 +0000)]
Note 'rm: conftest.dSYM: is a directory' messages

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@628771 13f79535-47bb-0310-9956-ffa450edef68

16 years agoUpdate doccos
Jim Jagielski [Mon, 18 Feb 2008 14:46:55 +0000 (14:46 +0000)]
Update doccos

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@628762 13f79535-47bb-0310-9956-ffa450edef68

16 years agohttp_filters: Don't send 100-continue when 4xx is due
Nick Kew [Mon, 18 Feb 2008 08:35:44 +0000 (08:35 +0000)]
http_filters: Don't send 100-continue when 4xx is due
PR 43711
Reported & tested by Ragini Bisraya
Patch by Chetan Reddy
Reviewed: niq

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@628644 13f79535-47bb-0310-9956-ffa450edef68

16 years agoRevert last change. It is not acceptable to remove all sources
Roy T. Fielding [Thu, 14 Feb 2008 19:48:14 +0000 (19:48 +0000)]
Revert last change.  It is not acceptable to remove all sources
of credit from our distribution files, even if they are out of date.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627857 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAssuming this sticks, explain why this was considered
Jim Jagielski [Thu, 14 Feb 2008 18:13:23 +0000 (18:13 +0000)]
Assuming this sticks, explain why this was considered
a Good Idea.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627819 13f79535-47bb-0310-9956-ffa450edef68

16 years agoChange default of mod_substitute to flattening...
Jim Jagielski [Thu, 14 Feb 2008 14:48:13 +0000 (14:48 +0000)]
Change default of mod_substitute to flattening...
Via current discussion on dev@httpd

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627764 13f79535-47bb-0310-9956-ffa450edef68

16 years agoNote why we aren't bothering to check that we have
Jim Jagielski [Thu, 14 Feb 2008 13:37:18 +0000 (13:37 +0000)]
Note why we aren't bothering to check that we have
a valid octet here.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627740 13f79535-47bb-0310-9956-ffa450edef68

16 years agoThis is really really out of date... try to refresh it;
Jim Jagielski [Thu, 14 Feb 2008 13:16:52 +0000 (13:16 +0000)]
This is really really out of date... try to refresh it;
remove the current "list" of people for now, maybe add link
to httpd.apache.org or http://people.apache.org/~jim/projects.html#httpd
instead

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627733 13f79535-47bb-0310-9956-ffa450edef68

16 years agoadjust transforms
Jim Jagielski [Thu, 14 Feb 2008 12:58:24 +0000 (12:58 +0000)]
adjust transforms

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627730 13f79535-47bb-0310-9956-ffa450edef68

16 years agowordsmithing
Jim Jagielski [Thu, 14 Feb 2008 12:57:19 +0000 (12:57 +0000)]
wordsmithing

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627729 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAdd in mod_jk's disablereuse analog for mod_proxy.
Jim Jagielski [Thu, 14 Feb 2008 12:55:57 +0000 (12:55 +0000)]
Add in mod_jk's disablereuse analog for mod_proxy.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627728 13f79535-47bb-0310-9956-ffa450edef68

16 years agoKasper Brand came across a flaw in the current implementation when CRL
Dirk-Willem van Gulik [Thu, 14 Feb 2008 10:24:04 +0000 (10:24 +0000)]
Kasper Brand came across a flaw in the current implementation when CRL
information - i.e.  SSLCARevocationFile/SSLCARevocationPath - is set
on a per-vhost basis (don't know how much sense it makes to have
non-global CRLs, but anyway...).

The attached patch (47B2B1A7.1060009@velox.ch on httpd-dev) addresses
this issue, and it also improves the logging behavior for an SNI
enabled configuration (previously some of the messages would
always go to the first vhost, or wouldn't appear at
all, depending on the LogLevel of the first vhost).

reviewed: dirkx

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627699 13f79535-47bb-0310-9956-ffa450edef68

16 years agoThe ordering of arguments in the directive desctiptions of LDAPTrustedGlobalCert
Paul J. Reder [Thu, 14 Feb 2008 02:27:26 +0000 (02:27 +0000)]
The ordering of arguments in the directive desctiptions of LDAPTrustedGlobalCert
and LDAPTrustedClientCert were backwards.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627637 13f79535-47bb-0310-9956-ffa450edef68

16 years agoClarify when AUTHENTICATE_* variables are populated by mod_authnz_ldap
Eric Covener [Wed, 13 Feb 2008 14:57:13 +0000 (14:57 +0000)]
Clarify when AUTHENTICATE_* variables are populated by mod_authnz_ldap
(authn only).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627443 13f79535-47bb-0310-9956-ffa450edef68

16 years agoUpdate revision markers.
Erik Abele [Wed, 13 Feb 2008 14:45:07 +0000 (14:45 +0000)]
Update revision markers.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627435 13f79535-47bb-0310-9956-ffa450edef68

16 years agoTransformation.
Erik Abele [Wed, 13 Feb 2008 14:42:28 +0000 (14:42 +0000)]
Transformation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627431 13f79535-47bb-0310-9956-ffa450edef68

16 years agoFix reference to RewriteCond - there's no class="module" in our XML.
Erik Abele [Wed, 13 Feb 2008 14:40:46 +0000 (14:40 +0000)]
Fix reference to RewriteCond - there's no class="module" in our XML.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627428 13f79535-47bb-0310-9956-ffa450edef68

16 years agoWhitespace fixes.
Erik Abele [Wed, 13 Feb 2008 13:18:16 +0000 (13:18 +0000)]
Whitespace fixes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627396 13f79535-47bb-0310-9956-ffa450edef68

16 years agoChange docs URLs to canonical version.
Erik Abele [Wed, 13 Feb 2008 12:54:19 +0000 (12:54 +0000)]
Change docs URLs to canonical version.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627389 13f79535-47bb-0310-9956-ffa450edef68

16 years agoA more complete solution for PR 41823, see also r619746 and r619747.
Erik Abele [Wed, 13 Feb 2008 12:46:50 +0000 (12:46 +0000)]
A more complete solution for PR 41823, see also r619746 and r619747.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627384 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* As per niq's comment, better destinct the types of idempotence.
Ruediger Pluem [Tue, 12 Feb 2008 20:51:08 +0000 (20:51 +0000)]
* As per niq's comment, better destinct the types of idempotence.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627097 13f79535-47bb-0310-9956-ffa450edef68

16 years ago* This change is backported.
Ruediger Pluem [Tue, 12 Feb 2008 20:27:01 +0000 (20:27 +0000)]
* This change is backported.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@627082 13f79535-47bb-0310-9956-ffa450edef68

16 years agoBuild products
Vincent Bray [Tue, 12 Feb 2008 11:54:40 +0000 (11:54 +0000)]
Build products

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620771 13f79535-47bb-0310-9956-ffa450edef68

16 years agoFix wellformedness error in .fr docs patch
Vincent Bray [Tue, 12 Feb 2008 11:49:22 +0000 (11:49 +0000)]
Fix wellformedness error in .fr docs patch

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620770 13f79535-47bb-0310-9956-ffa450edef68

16 years agoFrench language updates courtesy of Lucien Gentis and http://apache-doc.inl.fr/
Vincent Bray [Tue, 12 Feb 2008 11:40:29 +0000 (11:40 +0000)]
French language updates courtesy of Lucien Gentis and http://apache-doc.inl.fr/

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620769 13f79535-47bb-0310-9956-ffa450edef68

16 years agoMore spelling/clarifications/depluralizing (and we know the name of the error log)
Dirk-Willem van Gulik [Mon, 11 Feb 2008 22:17:12 +0000 (22:17 +0000)]
More spelling/clarifications/depluralizing (and we know the name of the error log)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620642 13f79535-47bb-0310-9956-ffa450edef68

16 years agoClarify the text a little and use the vhost terminology.
Dirk-Willem van Gulik [Mon, 11 Feb 2008 22:11:41 +0000 (22:11 +0000)]
Clarify the text a little and use the vhost terminology.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620635 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAddition of a test script which creates a Sample/test configuration for installations
Dirk-Willem van Gulik [Mon, 11 Feb 2008 22:06:42 +0000 (22:06 +0000)]
Addition of a test script which creates a Sample/test configuration for installations
that wants to support SNI. Primarily done as a lot of web developers find the creation
of certificates hard - and do not want to go to the expense of sourcing a handful
from a well-known CA just for testing and experimenting.

Also update the CHANGES log with the word 'SNI' as to make googling it easier.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620630 13f79535-47bb-0310-9956-ffa450edef68

16 years agoIncorperate feedback of Rudiger.
Dirk-Willem van Gulik [Mon, 11 Feb 2008 21:06:58 +0000 (21:06 +0000)]
Incorperate feedback of Rudiger.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620610 13f79535-47bb-0310-9956-ffa450edef68

16 years agoTurn the cache module into first class citizens (well the disk_cache
Dirk-Willem van Gulik [Mon, 11 Feb 2008 17:21:05 +0000 (17:21 +0000)]
Turn the cache module into first class citizens (well the disk_cache
and file cache that is).

This makes the delta between 'all' and 'most'

mod_cern_meta.c
mod_log_forensic.c
mod_mime_magic.c
mod_unique_id.c
mod_usertrack.c
mod_version.c
mod_mem_cache.c

And keeps disabled in all and most the modules for:

authnz_ldap
bucketeer
echo
example_hooks
case_filter
case_filter_in
example_ipc
charset_lite
cgid
ldap
optional_hook_export
optional_hook_import
optional_fn_import
optional_fn_export

As well as mod_ssl which is intentionally not part of MOST and All.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620530 13f79535-47bb-0310-9956-ffa450edef68

16 years agoClarify the phrase "per-directory context"
Rich Bowen [Mon, 11 Feb 2008 16:17:50 +0000 (16:17 +0000)]
Clarify the phrase "per-directory context"

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620513 13f79535-47bb-0310-9956-ffa450edef68

16 years agoMore examples and a few clarifications where the text didn't match the
Rich Bowen [Mon, 11 Feb 2008 16:17:19 +0000 (16:17 +0000)]
More examples and a few clarifications where the text didn't match the
example.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620512 13f79535-47bb-0310-9956-ffa450edef68

16 years agoReduce the WARNING to a DEBUG when SNI support is enabled.
Dirk-Willem van Gulik [Mon, 11 Feb 2008 15:38:47 +0000 (15:38 +0000)]
Reduce the WARNING to a DEBUG when SNI support is enabled.

This is because a) during SNI such is normal and b) regardless
when overlap is detected there will always be a warning:

    [warn] Init: Name-based SSL virtual hosts only work for clients
       with TLS server name indication support (RFC 4366)

at the end of the cycle.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620505 13f79535-47bb-0310-9956-ffa450edef68

16 years agoReturn a little bit more error information when, say a disk is full or something...
Dirk-Willem van Gulik [Mon, 11 Feb 2008 14:27:34 +0000 (14:27 +0000)]
Return a little bit more error information when, say a disk is full or something gets write protected. Note that in some cases mod_cache.c will_also_ log a 'cache: store_headers failed' subsequently.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620489 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAdd PR for header install
Dirk-Willem van Gulik [Sat, 9 Feb 2008 16:52:47 +0000 (16:52 +0000)]
Add PR for header install

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620153 13f79535-47bb-0310-9956-ffa450edef68

16 years agoCatch win32 up with r620135 for unix., install so, cache and rewrite .h files.
William A. Rowe Jr [Sat, 9 Feb 2008 16:11:50 +0000 (16:11 +0000)]
Catch win32 up with r620135 for unix., install so, cache and rewrite .h files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620145 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAlso install the so, rewrite and cache header files.
Dirk-Willem van Gulik [Sat, 9 Feb 2008 15:12:52 +0000 (15:12 +0000)]
Also install the so, rewrite and cache header files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620135 13f79535-47bb-0310-9956-ffa450edef68

16 years agoSub-requests are created and used with two purposes; sometimes
Dirk-Willem van Gulik [Sat, 9 Feb 2008 15:04:57 +0000 (15:04 +0000)]
Sub-requests are created and used with two purposes; sometimes
simply to 'see' what a request would do; as to fill out an SSI,
validate access or similar - and is then discarded. And sometimes
as the precursor to becoming the actual request; e.g. when mod_dir
checks if an /index.html can be served for a '/'.

In the latter case it is important to preserve the output filters
'for real'; whereas in the first case they have to be reset to
purely the minimal proto filters (if at all). This patch instates
the output filters in 3 cases where sub-requests are/may in fact
be used as the real request later on.

This is a relatively risky change (which should not be back-ported
without further discussion) and may break caches in combination
with internal redirects/vary/negotiation in subtle ways.

See the thread starting at [1] and in particular the general
concerns of rpluem at [2] with respect to sub requests
and (fast_)internal redirects possibly needing a more
thorough overhaul.

1: http://mail-archives.apache.org/mod_mbox/httpd-dev/200802.mbox/ajax/%3c335D1A4B-25E2-4FF1-8CDF-5010A7FBD293@webweaving.org%3e
2: http://mail-archives.apache.org/mod_mbox/httpd-dev/200802.mbox/%3c47ACE1D4.4060702@apache.org%3e

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620133 13f79535-47bb-0310-9956-ffa450edef68

16 years ago oops, forgot to add these. As part of PR 41823
Tony Stevenson [Fri, 8 Feb 2008 02:43:16 +0000 (02:43 +0000)]
 oops, forgot to add these. As part of PR 41823

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619747 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAs per PR 41823 - s/apache.exe/httpd.exe
Tony Stevenson [Fri, 8 Feb 2008 02:38:41 +0000 (02:38 +0000)]
As per PR 41823  -  s/apache.exe/httpd.exe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619746 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAs per PR 33892 - Added comment re escaping slashes.
Tony Stevenson [Fri, 8 Feb 2008 02:06:04 +0000 (02:06 +0000)]
As per PR 33892 - Added comment re escaping slashes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619736 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAs per PR 44135
Tony Stevenson [Fri, 8 Feb 2008 01:34:51 +0000 (01:34 +0000)]
As per PR 44135

Feeling brave mucking with the rewrite docs =)

setenvif -> added link to rewrite.html#rewritecond
rewrite -> added a see also so the rewrite flags stood out a little more.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619726 13f79535-47bb-0310-9956-ffa450edef68

16 years agoAdded notice that support forums will likely ask for an errorlog entry.
Tony Stevenson [Fri, 8 Feb 2008 00:20:38 +0000 (00:20 +0000)]
Added notice that support forums will likely ask for an errorlog entry.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619699 13f79535-47bb-0310-9956-ffa450edef68

16 years agoUpdate the example and fix typos
Bradley Nicholes [Thu, 7 Feb 2008 16:46:09 +0000 (16:46 +0000)]
Update the example and fix typos

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619498 13f79535-47bb-0310-9956-ffa450edef68

16 years agoDocument the RequireAlias block directive
Bradley Nicholes [Thu, 7 Feb 2008 16:45:11 +0000 (16:45 +0000)]
Document the RequireAlias block directive

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619497 13f79535-47bb-0310-9956-ffa450edef68