MPM os2

Apache MPM os2 Description: Hybrid multi-process, multi-threaded MPM for OS/2 Status: MPM ModuleIdentifier: mpm_mpmt_os2_module SourceFile: mpmt_os2.c Summary The Server consists of a main, parent process and a small, static number of child processes. The parent process' job is to manage the child processes. This involves spawning children as required to ensure there are always StartServers processes accepting connections. Each child process consists of a pool of worker threads and a main th

Server-Wide Configuration

Server-Wide Configuration This document explains some of the directives provided by the core server which are used to configure the basic operations of the server. Server Identification Related Modules Related Directives ServerName ServerAdmin ServerSignature ServerTokens UseCanonicalName UseCanonicalPhysicalPort The ServerAdmin and ServerTokens directives control what information about the server will be presented in server-generated documents such as error messages. The ServerTokens

Starting Apache

Starting Apache On Windows, Apache is normally run as a service. For details, see Running Apache as a Service. On Unix, the httpd program is run as a daemon that executes continuously in the background to handle requests. This document describes how to invoke httpd. How Apache Starts If the Listen specified in the configuration file is default of 80 (or any other port below 1024), then it is necessary to have root privileges in order to start apache, so that it can bind to this privileged

Reverse Proxy Guide

Reverse Proxy Guide In addition to being a "basic" web server, and providing static and dynamic content to end-users, Apache httpd (as well as most other web servers) can also act as a reverse proxy server, also-known-as a "gateway" server. In such scenarios, httpd itself does not generate or host the data, but rather the content is obtained by one or several backend servers, which normally have no direct connection to the external network. As httpd receives a request from a client, the reques

mod_mime_magic

Apache Module mod_mime_magic Description: Determines the MIME type of a file by looking at a few bytes of its contents Status: Extension ModuleIdentifier: mime_magic_module SourceFile: mod_mime_magic.c Summary This module determines the MIME type of files in the same way the Unix file(1) command works: it looks at the first few bytes of the file. It is intended as a "second line of defense" for cases that mod_mime can't resolve. This module is derived from a free version of the file(1) comma

Filters

Filters This document describes the use of filters in Apache. Filtering in Apache 2 Related Modules Related Directives mod_filter mod_deflate mod_ext_filter mod_include mod_charset_lite mod_reflector mod_buffer mod_data mod_ratelimit mod_reqtimeout mod_request mod_sed mod_substitute mod_xml2enc mod_proxy_html FilterChain FilterDeclare FilterProtocol FilterProvider AddInputFilter AddOutputFilter RemoveInputFilter RemoveOutputFilter ReflectorHeader ExtFilterDefine ExtFilterOptions SetInputF

SSL/TLS Strong Encryption: An Introduction

SSL/TLS Strong Encryption: An Introduction As an introduction this chapter is aimed at readers who are familiar with the Web, HTTP, and Apache, but are not security experts. It is not intended to be a definitive guide to the SSL protocol, nor does it discuss specific techniques for managing certificates in an organization, or the important legal issues of patents and import and export restrictions. Rather, it is intended to provide a common background to mod_ssl users by pulling together vario

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_authn_file

Apache Module mod_authn_file Description: User authentication using text files Status: Base ModuleIdentifier: authn_file_module SourceFile: mod_authn_file.c Compatibility: Available in Apache 2.1 and later Summary This module provides authentication front-ends such as mod_auth_digest and mod_auth_basic to authenticate users by looking up users in plain text password files. Similar functionality is provided by mod_authn_dbm. When using mod_auth_basic or mod_auth_digest, this module is invoked

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