From 8c61b3090ce58b1b9de5b4ef5d85ae3db111983f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Igor=20Gali=C4=87?= Date: Wed, 1 Dec 2010 15:25:11 +0000 Subject: [PATCH] fixing braino in r1041047, this should now fix pr#50381 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041050 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html.de | 294 ++++++++++++++-- docs/manual/mod/core.xml.de | 321 ++++++++++++++++-- docs/manual/mod/mod_autoindex.html.ko.euc-kr | 2 +- docs/manual/mod/mod_cache.html.ja.utf8 | 20 +- docs/manual/mod/mod_cache.html.ko.euc-kr | 28 +- docs/manual/mod/mod_cache_disk.html.ja.utf8 | 4 +- docs/manual/mod/mod_cache_disk.html.ko.euc-kr | 4 +- docs/manual/mod/mod_dir.html.ja.utf8 | 2 +- docs/manual/mod/mod_dir.html.ko.euc-kr | 2 +- docs/manual/mod/mod_dir.html.tr.utf8 | 2 +- docs/manual/mod/mod_log_config.html.ko.euc-kr | 2 +- docs/manual/mod/mod_mime.html.en | 8 +- docs/manual/mod/mod_mime.xml | 2 +- docs/manual/mod/mod_mime.xml.ja | 2 +- docs/manual/mod/mod_proxy.html.ja.utf8 | 10 +- docs/manual/mod/mod_speling.html.ko.euc-kr | 2 +- docs/manual/mod/quickreference.html.de | 14 +- 17 files changed, 620 insertions(+), 99 deletions(-) diff --git a/docs/manual/mod/core.html.de b/docs/manual/mod/core.html.de index 83e75fe57d..f82add5c41 100644 --- a/docs/manual/mod/core.html.de +++ b/docs/manual/mod/core.html.de @@ -122,7 +122,90 @@ Servers Kontext:Serverkonfiguration Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Kompatibilität:Verfügbar ab Apache httpd 2.1.5. +Auf Windows ab Apache httpd 2.3.3. + +

Diese Directive ermöglicht Betriebsystem spezifische + Optimierungen für seinen lauschenden Socket des + Protocol Typs. + Die Grundvoraussetzung ist, dass der Kernel nichts an den Socket eines + Serverprozesses schickt, solange entweder Daten angelangt sind, oder eine + vollständige HTTP Anfrage gepuffert ist. Lediglich + + FreeBSDs Accept Filters, Linuxs primitievere + TCP_DEFER_ACCEPT, und Windows' optimierte AcceptEx() + Funktionen sind derzeit unterstützt..

+ +

Die Verwendung von none als Argument schaltet jegliche accept + -Filter für dieses Protokoll ab. + Dies ist nützlich für Protokolle, die von einem Server erfordern + zuerst Daten zu senden, wie zum Beispiel ftp: oder nntp:

+

AcceptFilter nntp none

+ +

Die voreingestellten Protokollnamen sind https für + Port 443 und http für sätliche andere ports. + Um zu spezifizieren, dass ein anderes Protokkoll auf dem lauschenden Port + verwendet wird, fügen Sie das Protokoll + Argument zur Listen + Directive hinzu.

+ +

Die voreingestellten Werte sind auf FreeBSD:

+

+ AcceptFilter http httpready
+ AcceptFilter https dataready +

+ +

Der httpready accept-Filter puffert ganze HTTP Anfragen auf + Kernelebene. Ist die gesamte Anfrage erhalten, schickt sie der Kernel + an den Server. Siehe auch die Handbuchseite + + accf_http(9) für mehr Details. Da HTTPS Anfragen verschlüsselt + sind, werden lediglich die + accf_data(9) Filter eingesetzt.

+ +

Die voreingestellten Werte auf Linux sind:

+

+ AcceptFilter http data
+ AcceptFilter https data +

+ +

Linux's TCP_DEFER_ACCEPT unterstützt kein Puffern von + HTTP Anfragen. Jeglicher Werte neben none schalten + TCP_DEFER_ACCEPT auf dem lauschenden Port ein. Für mehr + Details, siehe die Linux + + tcp(7) Handbuchseite.

+ +

Die voreingestellten Werte sind auf Windows:

+

+ AcceptFilter http data
+ AcceptFilter https data +

+ +

Windows mpm_winnt interpretiert AcceptFilter als Anweisung die AcceptEx() + Programmierschnitstelle umzuschalten. Desweiteren unterstützt es keine + Pufferung des HTTP Protokolls. Es gibt zwei Werte, welche von der Windows + AcceptEx() Programmierschnittstelle Gebrauch machen und welche die Netzwerk + Sockets zwischen den einzelnen Verbindungen wieder aufbereiten. + data wartet, wie oben dokumentiert, bis Daten übertragen + wurden und der initiale Datenpuffer, sowie die Netzwerkendpunkt Adresse + durch einen einzigen AcceptEx() Aufruf abgerufen wurden. + connect verwendet die AcceptEx() Programmierschnittstelle, + ruft ebenfalls die Netzwerkendpunkt Adresse ab, aber ähnlich wie + none, wartet die connect Option nicht auf die + Initiale Data¨bertragung.

+ +

Auf Windows verwendet none accept() anstelle von AcceptEx() + und verwertet die Sockets zwischen Verbindungen nicht wieder. Dies ist + nützlich bei Netzwerkadaptern mit mangelhafter Treiber Unterstützung, + so wie einige virtuelle Netzwerk Anbieter, wie VPN Driver, oder Spam-, Viren- + oder Spyware-Filter.

+ + +

Siehe auch

+
top

AcceptPathInfo-Direktive

@@ -668,13 +751,13 @@ nicht auf andere Weise ermitteln kann.
top

Define-Direktive

- +
Beschreibung:Define the existence of a variable
Beschreibung:Define des Vorhandenseins einer variable
Syntax:Define Parametername
Kontext:Serverkonfiguration
Status:Core
Modul:core
-

Equivalent zum übergeben von Parametername mittels des +

Equivalent zum Übergeben von Parametername mittels des -D Arguments an httpd.

Diese Directive kann verwendet werden, um die Nutzung von <IfDefine> Sectionen umzuschalten, ohne die -D Argumentente in etwaigen Start-Skripten ändern @@ -965,12 +1048,13 @@ Auslieferung zu lesen Beschreibung:Verwende die sendfile-Unterstützung des Kernels, um Dateien an den Client auszuliefern Syntax:EnableSendfile On|Off -Voreinstellung:EnableSendfile On +Voreinstellung:EnableSendfile Off Kontext:Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess AllowOverride:FileInfo Status:Core Modul:core -Kompatibilität:Verfügbar ab Apache Version 2.0.44 +Kompatibilität:Verfügbar ab Version 2.0.44. Voreinstellung auf Off +geändert in der Version 2.3.9

Die Direktive steuert, ob httpd die sendfile-Unterstützung des Kernels verwenden kann, um @@ -1030,12 +1114,40 @@ Dateien an den Client auszuliefern

top

Error-Direktive

- - + + -
Beschreibung:Abort configuration parsing with a custom error message
Syntax:
Beschreibung:Abbruch der Konfigurationsanalyse mit einer angepassenten +Fehlermeldung
Syntax:Error Meldung
Kontext:Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess
Status:Core
Modul:core

Documentation not yet translated. Please see English version of document.

+Kompatibilität:Verfügbar ab 2.3.9 + +

Kann ein Fehler innheralb der Konfiguration erkannt werden, dann + kann diese Directive genutzt werden um eine angepasste Fehlermeldung zu + generieren und die Konfigurationsanalyse anzuhalten. + Typischerweise kann dies verwendet werden, um das Fehlen von erforderlichen + Modulen in der Konfiguration zu melden.

+ +

Beispiel

+ # sicherstellen dass mod_include geladen ist
+ <IfModule !include_module>
+ Error mod_include wird von mod_foo verlangt. Laden Sie es mit LoadModule.
+ </IfModule>
+
+ # sicherstellen dass genau eines von SSL,NOSSL definiert ist
+ <IfDefine SSL>
+ <IfDefine NOSSL>
+ Error Beide SSL and NOSSL sind defined. Bitte definieren sie nur eines davon.
+ </IfDefine>
+ </IfDefine>
+ <IfDefine !SSL>
+ <IfDefine !NOSSL>
+ Error Entweder SSL oder NOSSL muss definiert sein.
+ </IfDefine>
+ </IfDefine>
+

+ +
top

ErrorDocument-Direktive

@@ -1209,12 +1321,133 @@ Fehlermeldungen
top

ErrorLogFormat-Direktive

- - + + -
Beschreibung:Format specification for error log entries
Syntax:
Beschreibung:Formatspecifikation für Einträge des Fehlerprotokolls
Syntax: ErrorLog [Verbindung|Anfrage] Format
Kontext:Serverkonfiguration, Virtual Host
Status:Core
Modul:core

Documentation not yet translated. Please see English version of document.

+Kompatibilität:Verfügbar ab Apache httpd 2.3.9 +Documentation not yet translated. Please see English version of document. +

ErrorLogFormat erlaubt das Spezifizieren + supplementärer Information, welche zusätzlich zur eigentlichen + Fehlermeldun mitprotokoliert werden.

+ +

Einfaches Beispiel

+ ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M" +

+ +

Durch die Angabe des Verbindungs oder Request + Paramters an erster Stelle, eröffnen Sie die Möglichkeit + zusätzlicher Formate, die wiederum zusätzliche Information + protokolieren, wenn die erste Meldung einer Verbindung, oder respektive + einer Anfrage protokoliert wird. Diese Zusatzinformation wird lediglich + einmal pro Verbindung/Anfrage protokolliert. Wird eine Verbindung oder eine Anfrage + verarbeitet, ohne einen Protokolleintrag zu verursachen, so wird auch die + Zusatzinformation nicht protokolliert.

+ +

Es kann geschehen, dass einige Format-Zeichenketten Teilpunkte keine + Ausgab + string item. A - (minus) modifier causes a minus to be logged if the + respective item does not produce any output. In once-per-connection/request + formats, it is also possible to use the + (plus) modifier. If an + item with the plus modifier does not produce any output, the whole line is + ommitted.

+ +

A number as modifier can be used to assign a log severity level to a + format item. The item will only be logged if the severity of the log + message is not higher than the specified log severity level. The number can + range from 1 (alert) over 4 (warn) and 7 (debug) to 15 (trace8).

+ +

Some format string items accept additional parameters in braces.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Format String Description
%%Das Prozentzeichen
%...aEntfernte IP Adresse und Port
%...ALokale IP Adresse und Port
%...{name}eUmgebungsvariable Name aus der Anfrage
%...EAPR/OS Fehlerstatuskode und Zeichenkette
%...FDateiname der Quelle und Zeilennummer des Protokollaufrufs
%...{name}iAufruf Header Name
%...kAnzahl der keep-alive Anfragen auf dieser Verbindung
%...lLoglevel der Meldung
%...LLog ID der Anfrage
%...{c}LLog ID der Verbindung
%...{C}LLog ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer.
%...mName des Moduls, welches die Meldung protokoliert
%MDie eigentliche Protokollmeldung
%...{name}nRequest note name
%...PProcess ID of current process
%...TThread ID of current thread
%...tThe current time
%...{u}tThe current time including micro-seconds
%...{cu}tThe current time in compact ISO 8601 format, including + micro-seconds
%...vThe canonical ServerName + of the current server.
%...VThe server name of the server serving the request according to the + UseCanonicalName + setting.
(backslash space)Non-field delimiting space
(percent space)Field delimiter (no output)
+ +

The log ID format %L produces a unique id for a connection + or request. This can be used to correlate which log lines belong to the + same connection or request, which request happens on which connection. + A %L format string is also available in + mod_log_config, to allow to correlate access log entries + with error log lines. If mod_unique_id is loaded, its + unique id will be used as log ID for requests.

+ +

Example (somewhat similar to default format)

+ ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P] %7F: %E: [client\ %a] + %M% ,\ referer\ %{Referer}i" +

+ +

Example (similar to the 2.2.x format)

+ ErrorLogFormat "[%t] [%l] %7F: %E: [client\ %a] + %M% ,\ referer\ %{Referer}i" +

+ +

Advanced example with request/connection log IDs

+ ErrorLogFormat "[%{uc}t] [%-m:%-l] [R:%L] [C:%{C}L] %7F: %E: %M"
+ ErrorLogFormat request "[%{uc}t] [R:%L] Request %k on C:%{c}L pid:%P tid:%T"
+ ErrorLogFormat request "[%{uc}t] [R:%L] UA:'%+{User-Agent}i'"
+ ErrorLogFormat request "[%{uc}t] [R:%L] Referer:'%+{Referer}i'"
+ ErrorLogFormat connection "[%{uc}t] [C:%{c}L] local\ %a remote\ %A"
+

+ + +

Siehe auch

+
top

ExtendedStatus-Direktive

@@ -1225,7 +1458,7 @@ request Kontext:Serverkonfiguration Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

FileETag-Direktive

@@ -1426,7 +1659,7 @@ angegebenen MIME-Content-Type Kontext:Serverkonfiguration, Virtual Host Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

HostnameLookups-Direktive

@@ -1481,7 +1714,7 @@ satisfied by a request at runtime Kontext:Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

<IfDefine>-Direktive

@@ -1609,7 +1842,7 @@ Server-Konfigurationsdatei ein

Die Direktive erlaubt das Einfügen anderer Konfigurationsdateien in die Konfigurationsdatei des Servers.

-

Shell-typische (fnmatch()) Platzhlaterzeichen können +

Shell-typische (fnmatch()) Platzhalterzeichen können dazu verwendet werden, mehrere Dateien auf einmal in alphabetischer Reihenfolge einzufügen. Wenn Include darüber hinaus auf ein Verzeichnis anstatt auf eine Datei zeigt, @@ -2339,7 +2572,7 @@ or specified mutexes Kontext:Serverkonfiguration Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

NameVirtualHost-Direktive

@@ -2573,7 +2806,7 @@ bestimmten Verzeichnis verf Kontext:Serverkonfiguration, Virtual Host Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

Require-Direktive

@@ -2878,7 +3111,7 @@ of a request or the last 63, assuming the request itself is greater than Kontext:Serverkonfiguration Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

ServerAdmin-Direktive

@@ -3291,22 +3524,31 @@ bevor er die Anfrage abbricht
top

TraceEnable-Direktive

- - + + + -
Beschreibung:Determines the behaviour on TRACE requests
Syntax:
Beschreibung:Entscheidet über das Verhalten bei TRACE +Anfragen
Syntax:TraceEnable [on|off|extended]
Voreinstellung:TraceEnable on
Kontext:Serverkonfiguration
Status:Core
Modul:core

Documentation not yet translated. Please see English version of document.

+Kompatibilität: in Apache HTTP Server 1.3.34, 2.0.55 and later +Documentation not yet translated. Please see English version of document.
top

UnDefine-Direktive

- - + + -
Beschreibung:Undefine the existence of a variable
Syntax:
Beschreibung:Hebt die Definition einer Variablen auf
Syntax:UnDefine Parametername
Kontext:Serverkonfiguration
Status:Core
Modul:core

Documentation not yet translated. Please see English version of document.

+ +

Hebt die Auswirkungen eines Define, + oder des Übergeben eines -D Argument an httpd wieder auf.

+

Diese Directive kann verwendet werden, um die Nutzung von <IfDefine> Sectionen umzuschalten, ohne die + -D Argumentente in etwaigen Start-Skripten ändern + zu müssen.

+
top

UseCanonicalName-Direktive

@@ -3319,7 +3561,7 @@ ermittelt Status:Core Modul:core -

In vielen Situationen muss der Apache eine +

In vielen Situationen muss der Apache httpd eine selbstreferenzierende URL -- d.h. eine URL, die auf den selben Server zurück verweist -- zusammenbauen. Bei UseCanonicalName On verwendet der Apache den Hostnamen und Port, der in der @@ -3386,7 +3628,7 @@ ermittelt Kontext:Serverkonfiguration, Virtual Host, Verzeichnis Status:Core Modul:core -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
top

<VirtualHost>-Direktive

diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de index d861872c1b..bed6f93312 100644 --- a/docs/manual/mod/core.xml.de +++ b/docs/manual/mod/core.xml.de @@ -31,7 +31,88 @@ Servers AcceptFilter Configures optimizations for a Protocol's Listener Sockets server config -

Documentation not yet translated. Please see English version of document.

+Verfügbar ab Apache httpd 2.1.5. +Auf Windows ab Apache httpd 2.3.3. + + +

Diese Directive ermöglicht Betriebsystem spezifische + Optimierungen für seinen lauschenden Socket des + Protocol Typs. + Die Grundvoraussetzung ist, dass der Kernel nichts an den Socket eines + Serverprozesses schickt, solange entweder Daten angelangt sind, oder eine + vollständige HTTP Anfrage gepuffert ist. Lediglich + + FreeBSDs Accept Filters, Linuxs primitievere + TCP_DEFER_ACCEPT, und Windows' optimierte AcceptEx() + Funktionen sind derzeit unterstützt..

+ +

Die Verwendung von none als Argument schaltet jegliche accept + -Filter für dieses Protokoll ab. + Dies ist nützlich für Protokolle, die von einem Server erfordern + zuerst Daten zu senden, wie zum Beispiel ftp: oder nntp:

+ AcceptFilter nntp none + +

Die voreingestellten Protokollnamen sind https für + Port 443 und http für sätliche andere ports. + Um zu spezifizieren, dass ein anderes Protokkoll auf dem lauschenden Port + verwendet wird, fügen Sie das Protokoll + Argument zur Listen + Directive hinzu.

+ +

Die voreingestellten Werte sind auf FreeBSD:

+ + AcceptFilter http httpready
+ AcceptFilter https dataready +
+ +

Der httpready accept-Filter puffert ganze HTTP Anfragen auf + Kernelebene. Ist die gesamte Anfrage erhalten, schickt sie der Kernel + an den Server. Siehe auch die Handbuchseite + + accf_http(9) für mehr Details. Da HTTPS Anfragen verschlüsselt + sind, werden lediglich die + accf_data(9) Filter eingesetzt.

+ +

Die voreingestellten Werte auf Linux sind:

+ + AcceptFilter http data
+ AcceptFilter https data +
+ +

Linux's TCP_DEFER_ACCEPT unterstützt kein Puffern von + HTTP Anfragen. Jeglicher Werte neben none schalten + TCP_DEFER_ACCEPT auf dem lauschenden Port ein. Für mehr + Details, siehe die Linux + + tcp(7) Handbuchseite.

+ +

Die voreingestellten Werte sind auf Windows:

+ + AcceptFilter http data
+ AcceptFilter https data +
+ +

Windows mpm_winnt interpretiert AcceptFilter als Anweisung die AcceptEx() + Programmierschnitstelle umzuschalten. Desweiteren unterstützt es keine + Pufferung des HTTP Protokolls. Es gibt zwei Werte, welche von der Windows + AcceptEx() Programmierschnittstelle Gebrauch machen und welche die Netzwerk + Sockets zwischen den einzelnen Verbindungen wieder aufbereiten. + data wartet, wie oben dokumentiert, bis Daten übertragen + wurden und der initiale Datenpuffer, sowie die Netzwerkendpunkt Adresse + durch einen einzigen AcceptEx() Aufruf abgerufen wurden. + connect verwendet die AcceptEx() Programmierschnittstelle, + ruft ebenfalls die Netzwerkendpunkt Adresse ab, aber ähnlich wie + none, wartet die connect Option nicht auf die + Initiale Data¨bertragung.

+ +

Auf Windows verwendet none accept() anstelle von AcceptEx() + und verwertet die Sockets zwischen Verbindungen nicht wieder. Dies ist + nützlich bei Netzwerkadaptern mit mangelhafter Treiber Unterstützung, + so wie einige virtuelle Netzwerk Anbieter, wie VPN Driver, oder Spam-, Viren- + oder Spyware-Filter.

+ +
+Protocol @@ -596,12 +677,12 @@ nicht auf andere Weise ermitteln kann. Define -Define the existence of a variable +Define des Vorhandenseins einer variable Define Parametername server config -

Equivalent zum übergeben von Parametername mittels des +

Equivalent zum Übergeben von Parametername mittels des -D Arguments an httpd.

Diese Directive kann verwendet werden, um die Nutzung von IfDefine Sectionen umzuschalten, ohne die @@ -892,12 +973,13 @@ Auslieferung zu lesen Verwende die sendfile-Unterstützung des Kernels, um Dateien an den Client auszuliefern EnableSendfile On|Off -EnableSendfile On +EnableSendfile Off server configvirtual host directory.htaccess FileInfo -Verfügbar ab Apache Version 2.0.44 +Verfügbar ab Version 2.0.44. Voreinstellung auf Off +geändert in der Version 2.3.9

Die Direktive steuert, ob httpd die @@ -959,9 +1041,40 @@ Dateien an den Client auszuliefern Error -Abort configuration parsing with a custom error message -server configvirtual hostdirectory.htaccess -

Documentation not yet translated. Please see English version of document.

+Abbruch der Konfigurationsanalyse mit einer angepassenten +Fehlermeldung +Error Meldung +server configvirtual host +directory.htaccess +Verfügbar ab 2.3.9 + + +

Kann ein Fehler innheralb der Konfiguration erkannt werden, dann + kann diese Directive genutzt werden um eine angepasste Fehlermeldung zu + generieren und die Konfigurationsanalyse anzuhalten. + Typischerweise kann dies verwendet werden, um das Fehlen von erforderlichen + Modulen in der Konfiguration zu melden.

+ + Beispiel + # sicherstellen dass mod_include geladen ist
+ <IfModule !include_module>
+ Error mod_include wird von mod_foo verlangt. Laden Sie es mit LoadModule.
+ </IfModule>
+
+ # sicherstellen dass genau eines von SSL,NOSSL definiert ist
+ <IfDefine SSL>
+ <IfDefine NOSSL>
+ Error Beide SSL and NOSSL sind defined. Bitte definieren sie nur eines davon.
+ </IfDefine>
+ </IfDefine>
+ <IfDefine !SSL>
+ <IfDefine !NOSSL>
+ Error Entweder SSL oder NOSSL muss definiert sein.
+ </IfDefine>
+ </IfDefine>
+
+ +
@@ -1137,9 +1250,157 @@ Fehlermeldungen ErrorLogFormat -Format specification for error log entries +Formatspecifikation für Einträge des Fehlerprotokolls + ErrorLog [Verbindung|Anfrage] Format server configvirtual host -

Documentation not yet translated. Please see English version of document.

+Verfügbar ab Apache httpd 2.3.9 +Documentation not yet translated. Please see English version of document. + + +

ErrorLogFormat erlaubt das Spezifizieren + supplementärer Information, welche zusätzlich zur eigentlichen + Fehlermeldun mitprotokoliert werden.

+ + Einfaches Beispiel + ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M" + + +

Durch die Angabe des Verbindungs oder Request + Paramters an erster Stelle, eröffnen Sie die Möglichkeit + zusätzlicher Formate, die wiederum zusätzliche Information + protokolieren, wenn die erste Meldung einer Verbindung, oder respektive + einer Anfrage protokoliert wird. Diese Zusatzinformation wird lediglich + einmal pro Verbindung/Anfrage protokolliert. Wird eine Verbindung oder eine Anfrage + verarbeitet, ohne einen Protokolleintrag zu verursachen, so wird auch die + Zusatzinformation nicht protokolliert.

+ +

Es kann geschehen, dass einige Format-Zeichenketten Teilpunkte keine + Ausgab + string item. A - (minus) modifier causes a minus to be logged if the + respective item does not produce any output. In once-per-connection/request + formats, it is also possible to use the + (plus) modifier. If an + item with the plus modifier does not produce any output, the whole line is + ommitted.

+ +

A number as modifier can be used to assign a log severity level to a + format item. The item will only be logged if the severity of the log + message is not higher than the specified log severity level. The number can + range from 1 (alert) over 4 (warn) and 7 (debug) to 15 (trace8).

+ +

Some format string items accept additional parameters in braces.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Format String Description
%%Das Prozentzeichen
%...aEntfernte IP Adresse und Port
%...ALokale IP Adresse und Port
%...{name}eUmgebungsvariable Name aus der Anfrage
%...EAPR/OS Fehlerstatuskode und Zeichenkette
%...FDateiname der Quelle und Zeilennummer des Protokollaufrufs
%...{name}iAufruf Header Name
%...kAnzahl der keep-alive Anfragen auf dieser Verbindung
%...lLoglevel der Meldung
%...LLog ID der Anfrage
%...{c}LLog ID der Verbindung
%...{C}LLog ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer.
%...mName des Moduls, welches die Meldung protokoliert
%MDie eigentliche Protokollmeldung
%...{name}nRequest note name
%...PProcess ID of current process
%...TThread ID of current thread
%...tThe current time
%...{u}tThe current time including micro-seconds
%...{cu}tThe current time in compact ISO 8601 format, including + micro-seconds
%...vThe canonical ServerName + of the current server.
%...VThe server name of the server serving the request according to the + UseCanonicalName + setting.
(backslash space)Non-field delimiting space
(percent space)Field delimiter (no output)
+ +

The log ID format %L produces a unique id for a connection + or request. This can be used to correlate which log lines belong to the + same connection or request, which request happens on which connection. + A %L format string is also available in + mod_log_config, to allow to correlate access log entries + with error log lines. If mod_unique_id is loaded, its + unique id will be used as log ID for requests.

+ + Example (somewhat similar to default format) + ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P] %7F: %E: [client\ %a] + %M% ,\ referer\ %{Referer}i" + + + Example (similar to the 2.2.x format) + ErrorLogFormat "[%t] [%l] %7F: %E: [client\ %a] + %M% ,\ referer\ %{Referer}i" + + + Advanced example with request/connection log IDs + ErrorLogFormat "[%{uc}t] [%-m:%-l] [R:%L] [C:%{C}L] %7F: %E: %M"
+ ErrorLogFormat request "[%{uc}t] [R:%L] Request %k on C:%{c}L pid:%P tid:%T"
+ ErrorLogFormat request "[%{uc}t] [R:%L] UA:'%+{User-Agent}i'"
+ ErrorLogFormat request "[%{uc}t] [R:%L] Referer:'%+{Referer}i'"
+ ErrorLogFormat connection "[%{uc}t] [C:%{c}L] local\ %a remote\ %A"
+
+ +
+ErrorLog +LogLevel +Apache HTTP Server Log Files
@@ -1147,7 +1408,7 @@ Fehlermeldungen Keep track of extended status information for each request server config -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -1351,7 +1612,7 @@ angegebenen MIME-Content-Type GprofDir Directory to write gmon.out profiling data to. server configvirtual host -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -1404,7 +1665,7 @@ angegebenen MIME-Content-Type Contains directives that apply only if a condition is satisfied by a request at runtime server configvirtual hostdirectory.htaccess -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -1539,7 +1800,7 @@ Server-Konfigurationsdatei ein

Die Direktive erlaubt das Einfügen anderer Konfigurationsdateien in die Konfigurationsdatei des Servers.

-

Shell-typische (fnmatch()) Platzhlaterzeichen können +

Shell-typische (fnmatch()) Platzhalterzeichen können dazu verwendet werden, mehrere Dateien auf einmal in alphabetischer Reihenfolge einzufügen. Wenn Include darüber hinaus auf ein Verzeichnis anstatt auf eine Datei zeigt, @@ -2274,7 +2535,7 @@ zulässig sind Configures mutex mechanism and lock file directory for all or specified mutexes server config -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -2565,7 +2826,7 @@ Ressource zugreifen können Protocol Protocol for a listening socket server configvirtual host -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -2802,7 +3063,7 @@ Die Option Registry-Strict ist verfügbar seit Apache of a request or the last 63, assuming the request itself is greater than 63 chars. server config -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
@@ -3198,16 +3459,30 @@ bevor er die Anfrage abbricht TraceEnable -Determines the behaviour on TRACE requests +Entscheidet über das Verhalten bei TRACE +Anfragen +TraceEnable [on|off|extended] +TraceEnable on server config -

Documentation not yet translated. Please see English version of document.

+ in Apache HTTP Server 1.3.34, 2.0.55 and later +Documentation not yet translated. Please see English version of document.
UnDefine -Undefine the existence of a variable +Hebt die Definition einer Variablen auf +UnDefine Parametername server config -

Documentation not yet translated. Please see English version of document.

+ + +

Hebt die Auswirkungen eines Define, + oder des Übergeben eines -D Argument an httpd wieder auf.

+

Diese Directive kann verwendet werden, um die Nutzung von IfDefine Sectionen umzuschalten, ohne die + -D Argumentente in etwaigen Start-Skripten ändern + zu müssen.

+
@@ -3220,7 +3495,7 @@ ermittelt directory -

In vielen Situationen muss der Apache eine +

In vielen Situationen muss der Apache httpd eine selbstreferenzierende URL -- d.h. eine URL, die auf den selben Server zurück verweist -- zusammenbauen. Bei UseCanonicalName On verwendet der Apache den Hostnamen und Port, der in der @@ -3283,7 +3558,7 @@ ermittelt UseCanonicalPhysicalPort Configures how the server determines its own name and port server configvirtual hostdirectory -

Documentation not yet translated. Please see English version of document.

+Documentation not yet translated. Please see English version of document.
diff --git a/docs/manual/mod/mod_autoindex.html.ko.euc-kr b/docs/manual/mod/mod_autoindex.html.ko.euc-kr index e7050216f2..65bc742cc6 100644 --- a/docs/manual/mod/mod_autoindex.html.ko.euc-kr +++ b/docs/manual/mod/mod_autoindex.html.ko.euc-kr @@ -459,7 +459,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Base ¸ðµâ:mod_autoindex -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

IndexIgnore Áö½Ã¾î

diff --git a/docs/manual/mod/mod_cache.html.ja.utf8 b/docs/manual/mod/mod_cache.html.ja.utf8 index 5e7f36a8f0..7c65e062bc 100644 --- a/docs/manual/mod/mod_cache.html.ja.utf8 +++ b/docs/manual/mod/mod_cache.html.ja.utf8 @@ -172,7 +172,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheDisable ディレクティブ

@@ -249,7 +249,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheIgnoreCacheControl ディレクティブ

@@ -398,7 +398,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheKeyBaseURL ディレクティブ

@@ -408,7 +408,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLastModifiedFactor ディレクティブ

@@ -454,7 +454,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLockMaxAge ディレクティブ

@@ -464,7 +464,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLockPath ディレクティブ

@@ -474,7 +474,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheMaxExpire ディレクティブ

@@ -525,7 +525,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStaleOnError ディレクティブ

@@ -535,7 +535,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStoreExpired ディレクティブ

@@ -545,7 +545,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStoreNoStore ディレクティブ

diff --git a/docs/manual/mod/mod_cache.html.ko.euc-kr b/docs/manual/mod/mod_cache.html.ko.euc-kr index 43d400825e..60b809c627 100644 --- a/docs/manual/mod/mod_cache.html.ko.euc-kr +++ b/docs/manual/mod/mod_cache.html.ko.euc-kr @@ -159,7 +159,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheDisable Áö½Ã¾î

@@ -219,7 +219,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheIgnoreCacheControl Áö½Ã¾î

@@ -327,7 +327,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheIgnoreURLSessionIdentifiers Áö½Ã¾î

@@ -338,7 +338,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheKeyBaseURL Áö½Ã¾î

@@ -348,7 +348,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLastModifiedFactor Áö½Ã¾î

@@ -390,7 +390,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLockMaxAge Áö½Ã¾î

@@ -400,7 +400,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheLockPath Áö½Ã¾î

@@ -410,7 +410,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheMaxExpire Áö½Ã¾î

@@ -440,7 +440,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheQuickHandler Áö½Ã¾î

@@ -450,7 +450,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ® »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStaleOnError Áö½Ã¾î

@@ -460,7 +460,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStoreExpired Áö½Ã¾î

@@ -470,7 +470,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStoreNoStore Áö½Ã¾î

@@ -480,7 +480,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheStorePrivate Áö½Ã¾î

@@ -490,7 +490,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

diff --git a/docs/manual/mod/mod_cache_disk.html.ja.utf8 b/docs/manual/mod/mod_cache_disk.html.ja.utf8 index 12ec211b1e..4e2f0bba7d 100644 --- a/docs/manual/mod/mod_cache_disk.html.ja.utf8 +++ b/docs/manual/mod/mod_cache_disk.html.ja.utf8 @@ -159,7 +159,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache_disk -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheReadTime ディレクティブ

@@ -169,7 +169,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Extension モジュール:mod_cache_disk -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheRoot ディレクティブ

diff --git a/docs/manual/mod/mod_cache_disk.html.ko.euc-kr b/docs/manual/mod/mod_cache_disk.html.ko.euc-kr index 9068e8f1be..4c252767f1 100644 --- a/docs/manual/mod/mod_cache_disk.html.ko.euc-kr +++ b/docs/manual/mod/mod_cache_disk.html.ko.euc-kr @@ -154,7 +154,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache_disk -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheReadTime Áö½Ã¾î

@@ -165,7 +165,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Experimental ¸ðµâ:mod_cache_disk -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CacheRoot Áö½Ã¾î

diff --git a/docs/manual/mod/mod_dir.html.ja.utf8 b/docs/manual/mod/mod_dir.html.ja.utf8 index 8037cb1883..7585b046dc 100644 --- a/docs/manual/mod/mod_dir.html.ja.utf8 +++ b/docs/manual/mod/mod_dir.html.ja.utf8 @@ -183,7 +183,7 @@ コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess ステータス:Base モジュール:mod_dir -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

diff --git a/docs/manual/mod/mod_dir.html.ko.euc-kr b/docs/manual/mod/mod_dir.html.ko.euc-kr index 15120fe83a..b7288710b9 100644 --- a/docs/manual/mod/mod_dir.html.ko.euc-kr +++ b/docs/manual/mod/mod_dir.html.ko.euc-kr @@ -169,7 +169,7 @@ index »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess »óÅÂ:Base ¸ðµâ:mod_dir -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

diff --git a/docs/manual/mod/mod_dir.html.tr.utf8 b/docs/manual/mod/mod_dir.html.tr.utf8 index 6a438a83bb..7760ea2d30 100644 --- a/docs/manual/mod/mod_dir.html.tr.utf8 +++ b/docs/manual/mod/mod_dir.html.tr.utf8 @@ -216,7 +216,7 @@ Bağlam:sunucu geneli, sanal konak, dizin, .htaccess Durum:Temel Modül:mod_dir -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

diff --git a/docs/manual/mod/mod_log_config.html.ko.euc-kr b/docs/manual/mod/mod_log_config.html.ko.euc-kr index e15939705c..df32af14eb 100644 --- a/docs/manual/mod/mod_log_config.html.ko.euc-kr +++ b/docs/manual/mod/mod_log_config.html.ko.euc-kr @@ -247,7 +247,7 @@ »ç¿ëÀå¼Ò:ÁÖ¼­¹ö¼³Á¤ »óÅÂ:Base ¸ðµâ:mod_log_config -Documentation not yet translated. Please see English version of document. +

Documentation not yet translated. Please see English version of document.

top

CookieLog Áö½Ã¾î

diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en index 748cf0090e..dc9dcf2fb7 100644 --- a/docs/manual/mod/mod_mime.html.en +++ b/docs/manual/mod/mod_mime.html.en @@ -646,12 +646,14 @@ components as part of the filename ModMimeUsePathInfo On

-

If you have a request for /index.php/foo.shtml where - /index.php mod_mime will now treat the +

If you have a request for /index.php/foo.shtml + mod_mime will now treat the incoming request as /index.php/foo.shtml and directives like AddOutputFilter INCLUDES .shtml will add the INCLUDES filter to the request. If ModMimeUsePathInfo is not set, the - INCLUDES filter will not be added.

+ INCLUDES filter will not be added. This will work + analogously for virtual paths, such as those defined by + <Location>

See also