blob: fc3ac9ac0ab7da338c816985645251daf11df93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="./style/manual.de.xsl"?>
<!-- English Revision: 170636:420990 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manualpage metafile="upgrading.xml.meta">
<title>Upgrade von 2.0 auf 2.1</title>
<summary>
<p>Dieses Dokument dient der Unterstützung beim Upgrade. Es
enthält die entscheidenden Informationen für bisherige
Apache-Nutzer. Diese sind als kurze Anmerkungen
gedacht. Weitere Informationen finden Sie entweder unter
<a href="new_features_2_2.html">Neue Funktionen</a> oder in
den <code>src/CHANGES</code>-Dateien.</p>
<p>Dieses Dokument beschreibt lediglich die Änderungen von Version
2.2 gegenüber Version 2.0. Wenn Sie ein Upgrade von Version 1.3
durchführen, sollten Sie auch <a
href="http://httpd.apache.org/docs/2.0/upgrading.html">Upgrade von 1.3
auf 2.0</a> zu Rate ziehen.</p>
</summary>
<seealso><a href="new_features_2_0.html">Übersicht der neuen Funktionen
in Apache 2.0</a></seealso>
<section id="compile-time">
<title>Änderungen der Konfiguration bei der Kompilierung</title>
</section>
<section id="run-time">
<title>Änderungen der Laufzeit-Konfiguration</title>
<ul>
<li>Die mit dem Apache HTTP Server ausgelieferte Konfigurationsdatei
<code>httpd.conf</code> wurde stark vereinfacht, indem alle außer
den unbedingt notwendigen Konfigurationseinstellungen entfernt wurden.
Im <code>conf/extra/</code>-Verzeichnis Ihrer Installation finden Sie
eine Reihe von Konfigurationsbeispielen für erweiterte Funktionen.
</li>
<li>Die <program>apachectl</program>-Option <code>startssl</code> gibt es
nicht mehr. Um SSL-Unterstützung zu aktivieren müssen Sie die
<code>httpd.conf</code> editieren und die entsprechenden
<module>mod_ssl</module>-Anweisungen einfügen und
anschließend den Server mit <code>apachectl start</code> starten.
Eine Beispielkonfiguration zum Aktivieren von <module>mod_ssl</module>
ist in <code>conf/extra/httpd-ssl.conf</code> enthalten.
</li>
<li>Die Voreinstellung von <directive
module="core">UseCanonicalName</directive> ist jetzt <code>Off</code>.
Wenn diese Anweisung nicht in Ihrer Konfigurationsdatei enthalten ist,
können Sie <code>UseCanonicalName On</code> einfügen, um das
bisherige Verhalten beizubehalten.
</li>
<li>Das Modul <module>mod_userdir</module> reagiert nicht länger auf
Anfragen, solange nicht in der Konfigurationsdatei eine <directive
module="mod_userdir">UserDir</directive>-Anweisung enthalten ist, die
einen Verzeichnisnamen angibt. Fügen Sie Ihrer Konfigurationsdatei
die Anweisung <code>UserDir public_html</code> hinzu, um das
bisherige Verhalten wiederherzustellen.
</li>
</ul>
</section>
<section id="misc">
<title>Sonstige Änderungen</title>
</section>
<section id="third-party">
<title>Module von Drittanbietern</title>
</section>
</manualpage>
|