mod_slotmem_shm

Apache Module mod_slotmem_shm Description: Slot-based shared memory provider. Status: Extension ModuleIdentifier: slotmem_shm_module SourceFile: mod_slotmem_shm.c Summary mod_slotmem_shm is a memory provider which provides for creation and access to a shared memory segment in which the datasets are organized in "slots." All shared memory is cleared and cleaned with each restart, whether graceful or not. The data itself is stored and restored within a file noted by the name parameter in the

mod_slotmem_plain

Apache Module mod_slotmem_plain Description: Slot-based shared memory provider. Status: Extension ModuleIdentifier: slotmem_plain_module SourceFile: mod_slotmem_plain.c Summary mod_slotmem_plain is a memory provider which provides for creation and access to a plain memory segment in which the datasets are organized in "slots." If the memory needs to be shared between threads and processes, a better provider would be mod_slotmem_shm. mod_slotmem_plain provides the following API functions:

mod_setenvif

Apache Module mod_setenvif Description: Allows the setting of environment variables based on characteristics of the request Status: Base ModuleIdentifier: setenvif_module SourceFile: mod_setenvif.c Summary The mod_setenvif module allows you to set internal environment variables according to whether different aspects of the request match regular expressions you specify. These environment variables can be used by other parts of the server to make decisions about actions to be taken, as well as

mod_session_dbd

Apache Module mod_session_dbd Description: DBD/SQL based session support Status: Extension ModuleIdentifier: session_dbd_module SourceFile: mod_session_dbd.c Compatibility: Available in Apache 2.3 and later Summary Warning The session modules make use of HTTP cookies, and as such can fall victim to Cross Site Scripting attacks, or expose potentially private information to clients. Please ensure that the relevant risks have been taken into account before enabling the session functionality on

mod_session_crypto

Apache Module mod_session_crypto Description: Session encryption support Status: Experimental ModuleIdentifier: session_crypto_module SourceFile: mod_session_crypto.c Compatibility: Available in Apache 2.3 and later Summary Warning The session modules make use of HTTP cookies, and as such can fall victim to Cross Site Scripting attacks, or expose potentially private information to clients. Please ensure that the relevant risks have been taken into account before enabling the session functio

mod_session_cookie

Apache Module mod_session_cookie Description: Cookie based session support Status: Extension ModuleIdentifier: session_cookie_module SourceFile: mod_session_cookie.c Compatibility: Available in Apache 2.3 and later Summary Warning The session modules make use of HTTP cookies, and as such can fall victim to Cross Site Scripting attacks, or expose potentially private information to clients. Please ensure that the relevant risks have been taken into account before enabling the session function

mod_session

Apache Module mod_session Description: Session support Status: Extension ModuleIdentifier: session_module SourceFile: mod_session.c Compatibility: Available in Apache 2.3 and later Summary Warning The session modules make use of HTTP cookies, and as such can fall victim to Cross Site Scripting attacks, or expose potentially private information to clients. Please ensure that the relevant risks have been taken into account before enabling the session functionality on your server. This module

mod_sed

Apache Module mod_sed Description: Filter Input (request) and Output (response) content using sed syntax Status: Experimental ModuleIdentifier: sed_module SourceFile: mod_sed.c sed0.c sed1.c regexp.c regexp.h sed.h Compatibility: Available in Apache 2.3 and later Summary mod_sed is an in-process content filter. The mod_sed filter implements the sed editing commands implemented by the Solaris 10 sed program as described in the manual page. However, unlike sed, mod_sed doesn't take data from

mod_rewrite Technical Details

Apache mod_rewrite Technical Details This document discusses some of the technical details of mod_rewrite and URL matching. API Phases The Apache HTTP Server handles requests in several phases. At each of these phases, one or more modules may be called upon to handle that portion of the request lifecycle. Phases include things like URL-to-filename translation, authentication, authorization, content, and logging. (This is not an exhaustive list.) mod_rewrite acts in two of these phases (or

mod_rewrite Introduction

Apache mod_rewrite Introduction This document supplements the mod_rewrite reference documentation. It describes the basic concepts necessary for use of mod_rewrite. Other documents go into greater detail, but this doc should help the beginner get their feet wet. Introduction The Apache module mod_rewrite is a very powerful and sophisticated module which provides a way to do URL manipulations. With it, you can do nearly all types of URL rewriting that you may need. It is, however, somewhat