From: Igor Galić
Date: Wed, 1 Dec 2010 15:25:11 +0000 (+0000)
Subject: fixing braino in r1041047, this should now fix pr#50381
X-Git-Tag: 2.3.10~118
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c61b3090ce58b1b9de5b4ef5d85ae3db111983f;p=thirdparty%2Fapache%2Fhttpd.git
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
---
diff --git a/docs/manual/mod/core.html.de b/docs/manual/mod/core.html.de
index 83e75fe57dc..f82add5c413 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:
+
+
+ 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
+

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

-
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

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>
+
+
+

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

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.
+
+
+%% |
+ Das Prozentzeichen |
+%...a |
+ Entfernte IP Adresse und Port |
+%...A |
+ Lokale IP Adresse und Port |
+%...{name}e |
+ Umgebungsvariable Name aus der Anfrage |
+%...E |
+ APR/OS Fehlerstatuskode und Zeichenkette |
+%...F |
+ Dateiname der Quelle und Zeilennummer des Protokollaufrufs |
+%...{name}i |
+ Aufruf Header Name |
+%...k |
+ Anzahl der keep-alive Anfragen auf dieser Verbindung |
+%...l |
+ Loglevel der Meldung |
+%...L |
+ Log ID der Anfrage |
+%...{c}L |
+ Log ID der Verbindung |
+%...{C}L |
+ Log ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer. |
+%...m |
+ Name des Moduls, welches die Meldung protokoliert |
+%M |
+ Die eigentliche Protokollmeldung |
+%...{name}n |
+ Request note name |
+%...P |
+ Process ID of current process |
+%...T |
+ Thread ID of current thread |
+%...t |
+ The current time |
+%...{u}t |
+ The current time including micro-seconds |
+%...{cu}t |
+ The current time in compact ISO 8601 format, including
+ micro-seconds |
+%...v |
+ The canonical ServerName
+ of the current server. |
+%...V |
+ The 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
+

@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.

@@ -3291,22 +3524,31 @@ bevor er die Anfrage abbricht
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.
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.
+

@@ -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.

diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de
index d861872c1bf..bed6f93312c 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 |
+
+ %...a |
+ Entfernte IP Adresse und Port |
+
+ %...A |
+ Lokale IP Adresse und Port |
+
+ %...{name}e |
+ Umgebungsvariable Name aus der Anfrage |
+
+ %...E |
+ APR/OS Fehlerstatuskode und Zeichenkette |
+
+ %...F |
+ Dateiname der Quelle und Zeilennummer des Protokollaufrufs |
+
+ %...{name}i |
+ Aufruf Header Name |
+
+ %...k |
+ Anzahl der keep-alive Anfragen auf dieser Verbindung |
+
+ %...l |
+ Loglevel der Meldung |
+
+ %...L |
+ Log ID der Anfrage |
+
+ %...{c}L |
+ Log ID der Verbindung |
+
+ %...{C}L |
+ Log ID der Verbidung, wenn in einem Verbindungsrahmen verwendent, sonst leer. |
+
+ %...m |
+ Name des Moduls, welches die Meldung protokoliert |
+
+ %M |
+ Die eigentliche Protokollmeldung |
+
+ %...{name}n |
+ Request note name |
+
+ %...P |
+ Process ID of current process |
+
+ %...T |
+ Thread ID of current thread |
+
+ %...t |
+ The current time |
+
+ %...{u}t |
+ The current time including micro-seconds |
+
+ %...{cu}t |
+ The current time in compact ISO 8601 format, including
+ micro-seconds |
+
+ %...v |
+ The canonical ServerName
+ of the current server. |
+
+ %...V |
+ The 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 e7050216f2b..65bc742cc62 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.

diff --git a/docs/manual/mod/mod_cache.html.ja.utf8 b/docs/manual/mod/mod_cache.html.ja.utf8
index 5e7f36a8f04..7c65e062bc5 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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
diff --git a/docs/manual/mod/mod_cache.html.ko.euc-kr b/docs/manual/mod/mod_cache.html.ko.euc-kr
index 43d400825ed..60b809c627d 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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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.
@@ -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 12ec211b1e3..4e2f0bba7db 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.
@@ -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.
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 9068e8f1bea..4c252767f18 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.
@@ -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.
diff --git a/docs/manual/mod/mod_dir.html.ja.utf8 b/docs/manual/mod/mod_dir.html.ja.utf8
index 8037cb1883a..7585b046dcd 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 15120fe83a5..b7288710b9a 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 6a438a83bbf..7760ea2d304 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 e15939705ce..df32af14eb8 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.
diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en
index 748cf0090ed..dc9dcf2fb77 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
diff --git a/docs/manual/mod/mod_mime.xml b/docs/manual/mod/mod_mime.xml
index 68849684d1e..4f138101691 100644
--- a/docs/manual/mod/mod_mime.xml
+++ b/docs/manual/mod/mod_mime.xml
@@ -701,7 +701,7 @@ components as part of the filename
>ModMimeUsePathInfo is not set, the
INCLUDES filter will not be added. This will work
analogously for virtual paths, such as those defined by
- Location
+ Location
AcceptPathInfo
diff --git a/docs/manual/mod/mod_mime.xml.ja b/docs/manual/mod/mod_mime.xml.ja
index 92e1ed327b2..6257634b22a 100644
--- a/docs/manual/mod/mod_mime.xml.ja
+++ b/docs/manual/mod/mod_mime.xml.ja
@@ -1,7 +1,7 @@
-
+