[Inteproxy-commits] r266 - in trunk: . server/conf server/doc/source
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Sep 3 10:12:09 CEST 2010
Author: bjoern
Date: 2010-09-03 10:12:07 +0200 (Fri, 03 Sep 2010)
New Revision: 266
Added:
trunk/server/doc/source/URLrewriting.rst
Modified:
trunk/ChangeLog
trunk/server/conf/inteproxy-WindowsServer2003.conf
trunk/server/conf/platform-WindowsServer2003.conf
trunk/server/doc/source/anforderungen.rst
trunk/server/doc/source/conf.py
trunk/server/doc/source/index.rst
trunk/server/doc/source/installationDebian.rst
trunk/server/doc/source/installationSUSE.rst
trunk/server/doc/source/installationWindowsServer2003.rst
trunk/server/doc/source/konfigurationsdateiVirtualHost.rst
trunk/server/doc/source/linkliste.rst
trunk/server/doc/source/proxyRemote.rst
trunk/server/doc/source/versionsgeschichte.rst
Log:
Added new URL rewriting documentation. Preparations for the next InteProxy
Server 1.0.2 release.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/ChangeLog 2010-09-03 08:12:07 UTC (rev 266)
@@ -1,3 +1,35 @@
+2010-09-03 Bjoern Schilberg <bjoern at intevation.de>
+
+ * server/conf/inteproxy-WindowsServer2003.conf:
+ Added Apache FilterProvider and FilterChain Directives for URL rewriting.
+ Changed version numbers in path directives.
+ * server/conf/platform-WindowsServer2003.conf:
+ Added filter_module and substitute_module for URL rewriting.
+ * server/doc/source/installationWindowsServer2003.rst:
+ Changed version numbers in path directives.
+ * server/doc/source/konfigurationsdateiVirtualHost.rst:
+ Changed version numbers in path directives.
+ * server/doc/source/URLrewriting.rst:
+ Added new chapter for URL rewriting of WMS capabilities responses.
+ * server/doc/source/proxyRemote.rst:
+ Changed the documentation where the ProxyRemote directive should be
+ placed. Added a hint for which Apache version should be used.
+ * server/doc/source/versionsgeschichte.rst:
+ Added note to new version 1.0.2.
+ * server/doc/source/installationSUSE.rst:
+ Changed version numbers in path directives.
+ * server/doc/source/installationDebian.rst:
+ Changed version numbers in path directives.
+ * server/doc/source/conf.py:
+ Changed version and release to 1.0.2.
+ * server/doc/source/index.rst:
+ Added link to URLrewriting.rst
+ * doc/source/linkliste.rst:
+ Added links to mod_filter and mod_substitute, sorted link list.
+ * doc/source/anforderungen.rst:
+ Added optional requirements and sorted the list.
+
+
2010-08-23 Bernhard Herzog <bh at intevation.de>
Implement URL rewriting in capabilities responses in InteProxy Server
Modified: trunk/server/conf/inteproxy-WindowsServer2003.conf
===================================================================
--- trunk/server/conf/inteproxy-WindowsServer2003.conf 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/conf/inteproxy-WindowsServer2003.conf 2010-09-03 08:12:07 UTC (rev 266)
@@ -1,19 +1,30 @@
<VirtualHost *:64609>
ServerAdmin admin at server.de
-DocumentRoot "conf/InteProxy-SERVER-1.0.0/server"
+DocumentRoot "conf/InteProxy-SERVER-1.0.2/server"
-TransferLog "conf/InteProxy-SERVER-1.0.0/server/logs/access_log"
-Include "conf/InteProxy-SERVER-1.0.0/server/conf/platform-WindowsServer2003.conf"
+TransferLog "conf/InteProxy-SERVER-1.0.2/server/logs/access_log"
+
+Include "conf/InteProxy-SERVER-1.0.2/server/conf/platform-WindowsServer2003.conf"
+
RewriteEngine On
# RewriteLogLevel 0
-RewriteLog "conf/InteProxy-SERVER-1.0.0/server/logs/rewrite.log"
+RewriteLog "conf/InteProxy-SERVER-1.0.2/server/logs/rewrite.log"
+
+# Define filter chain to rewrite URLs in WMS capabilities responses.
+# WMS capabilities responses have the content type
+# application/vnd.ogc.wms_xml. The slash in the content type value has
+# to be expressed with the octal escape \057 because the slash has to be
+# used as the delimeter of the regular expression
+FilterProvider fixurls SUBSTITUTE Content-Type "/(application\057vnd.ogc.wms_xml|text\057xml)($|;)/"
+FilterChain fixurls
+
# conf/inteproxy-rewrite.conf has to be generated if it doesn't exist
# yet (see README.txt). It contains the RewriteRules for the actual
# InteProxy functionality.
-Include "conf/InteProxy-SERVER-1.0.0/server/conf/inteproxy-rewrite.conf"
+Include "conf/InteProxy-SERVER-1.0.2/server/conf/inteproxy-rewrite.conf"
# Deny all requests that have not been rewritten to refer to another
# host.
Modified: trunk/server/conf/platform-WindowsServer2003.conf
===================================================================
--- trunk/server/conf/platform-WindowsServer2003.conf 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/conf/platform-WindowsServer2003.conf 2010-09-03 08:12:07 UTC (rev 266)
@@ -6,3 +6,5 @@
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule ssl_module modules/mod_ssl.so
+LoadModule filter_module modules/mod_filter.so
+LoadModule substitute_module modules/mod_substitute.so
Added: trunk/server/doc/source/URLrewriting.rst
===================================================================
--- trunk/server/doc/source/URLrewriting.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/URLrewriting.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -0,0 +1,72 @@
+================================
+URL Rewriting in WMS Capabilites
+================================
+
+Das URL Rewriting ersetzt die URLs in den ausgelieferten Daten des Inteproxy
+Servers. So können beispielsweise die URL-Angaben in den OnlineResources des
+WMS Capabilites umgeschrieben werden.
+
+Vorraussetzungen
+----------------
+
+Das URL Rewriting benötigt die folgenden Apache-Module:
+
+- `mod_substitute <http://httpd.apache.org/docs/2.2/mod/mod_substitute.html>`_ (Modul erst ab Apache Version 2.2.7 verfügbar)
+- `mod_filter <http://httpd.apache.org/docs/2.2/mod/mod_filter.html>`_ (Modul erst ab Apache Version 2.1 verfügbar)
+
+
+Konfiguration
+-------------
+
+Damit das URL Rewriting angewendet werden kann, müssen zu erst die benötigten
+Module geladen werden. Bitte stellen Sie sicher das die benötigten Module in
+der jeweiligen Konfiguration ``platform-*.conf`` für Ihre Apache-Umgebung
+korrekt eingetragen sind. Beispielsweise müssen für Windows 2003 in der Datei
+``platform-WindowsServer2003.conf`` folgende Zeilen stehen::
+
+ LoadModule filter_module modules/mod_filter.so
+ LoadModule substitute_module modules/mod_substitute.so
+
+
+Zusätzlich müssen in der VirtualHost Konfigurationsdatei ihrer Umgebung die
+Apache `FilterProvider Direktive
+<http://httpd.apache.org/docs/2.2/mod/mod_filter.html#filterprovider>`_ und die
+Apache `FilterChain Direktive
+<http://httpd.apache.org/docs/2.2/mod/mod_filter.html#filterprovider>`_ gesetzt
+sein. Hier ein Beispiel für Windows 2003 in der Datei
+``inteproxy-WindowsServer2003.conf``::
+
+ FilterProvider fixurls SUBSTITUTE \
+ Content-Type "/(application\057vnd.ogc.wms_xml|text\057xml)($|;)/"
+ FilterChain fixurls
+
+**Bitte beachten Sie**: Das die Konfiguration der Direktiven **keine**
+Zeilenbrüche aufweisen dürfen. Die Zeilenbrüche dienen nur zur besseren
+Lesbarkeit.
+
+Diese beiden Direktiven definieren eine `filter chain` um die URLs in der WMS Capabilities Antwort um zuschreiben.
+
+**Wichtig**: Die WMS Capabilities Antworten müssen den MIME-Type/Content-Type ``application/vnd.ogc.wms_xml`` besitzen.
+
+Für die Aktivierung des URL Rewritings muss mit Hilfe der Konfigurationsdatei
+``inteproxy.cfg`` und mit dem Skript ``create-rewrite-rules.py`` mit der Option
+``--server-prefix`` zusätzlich eine Apache `Substitute Direktive
+<http://httpd.apache.org/docs/2.2/mod/mod_substitute.html>`_ in der Datei ``inteproxy-rewrite.conf`` erstellt
+werden. ::
+
+ ./create-rewrite-rules.py --config-file=inteproxy.cfg \
+ --server-prefix=http://<servername>:64609/ \
+ -o server/conf/inteproxy-rewrite.conf
+
+
+Nach erfolgreicher Konfiguration starten Sie den Apache Webserver neu.
+
+Test
+----
+
+Für einen einfachen Test, rufen Sie die folgenden URL (bsp. in einem Browser) auf::
+
+ http://<servername>:64609/inteproxy-demo.intevation.org/cgi-bin/frida-wms?
+ Request=GetCapabilities&Service=WMS&Version=1.1.0
+
+Nach der erfolgreicher Konfiguration des Inteproxy Servers sollten das WMS Capabilities die geänderten URLs enthalten.
Modified: trunk/server/doc/source/anforderungen.rst
===================================================================
--- trunk/server/doc/source/anforderungen.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/anforderungen.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -5,14 +5,22 @@
Der InteProxy Server benötigt einen `Apache HTTP Server 2
<http://httpd.apache.org>`_ und die folgenden Apache-Module:
- - `mod_rewrite <http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html>`_
- - `mod_authz_host
- <http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html>`_ (Modul erst ab Apache Version 2.1 verfügbar)
- - `mod_proxy <http://httpd.apache.org/docs/2.2/mod/mod_proxy.html>`_
- - `mod_proxy_http
- <http://httpd.apache.org/docs/2.2/mod/mod_proxy_http.html>`_
- - `mod_ssl <http://httpd.apache.org/docs/2.2/mod/mod_ssl.html>`_
+- `mod_rewrite <http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html>`_
+- `mod_authz_host
+ <http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html>`_ (Modul erst ab Apache Version 2.1 verfügbar)
+- `mod_proxy <http://httpd.apache.org/docs/2.2/mod/mod_proxy.html>`_
+- `mod_proxy_http
+ <http://httpd.apache.org/docs/2.2/mod/mod_proxy_http.html>`_
+- `mod_ssl <http://httpd.apache.org/docs/2.2/mod/mod_ssl.html>`_
+- optional für ProxyRemote:
+ - `mod_proxy <http://httpd.apache.org/docs/2.2/mod/mod_proxy.html>`_ (Modul erst ab Apache Version 2.2.15 verfügbar)
+
+- optional für URL Rewriting im WMS Capabilities:
+
+ - `mod_substitute <http://httpd.apache.org/docs/2.2/mod/mod_substitute.html>`_ (Modul erst ab Apache Version 2.2.7 verfügbar)
+ - `mod_filter <http://httpd.apache.org/docs/2.2/mod/mod_filter.html>`_ (Modul erst ab Apache Version 2.1 verfügbar)
+
Für die Ausführung des ``create-rewrite-rules.py`` Skripts werden zusätzlich
eine `Python <http://www.python.org/>`_-Umgebung und das Python-Paket `lxml
<http://codespeak.net/lxml/>`_ benötigt.
Modified: trunk/server/doc/source/conf.py
===================================================================
--- trunk/server/doc/source/conf.py 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/conf.py 2010-09-03 08:12:07 UTC (rev 266)
@@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
-version = '1.0.1'
+version = '1.0.2'
# The full version, including alpha/beta/rc tags.
-release = '1.0.1'
+release = '1.0.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Modified: trunk/server/doc/source/index.rst
===================================================================
--- trunk/server/doc/source/index.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/index.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -6,8 +6,6 @@
Willkommen zur InteProxy Server Dokumentation!
==============================================
-.. |dummy| replace:: foo bar
-
.. toctree::
:maxdepth: 2
@@ -20,6 +18,7 @@
konfigurationsdateiVirtualHost.rst
konfigurationsdateiInteProxy.rst
proxyRemote.rst
+ URLrewriting.rst
ersterTest.rst
linkliste.rst
.. versionsgeschichte.rst
Modified: trunk/server/doc/source/installationDebian.rst
===================================================================
--- trunk/server/doc/source/installationDebian.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/installationDebian.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -21,14 +21,14 @@
Verzeichnis ``/opt``. ::
cd /opt
- tar zxf InteProxy-SERVER-1.0.0.tar.gz
+ tar zxf InteProxy-SERVER-1.0.2.tar.gz
Anpassen und Umwandeln der InteProxy Konfigurationsdatei
--------------------------------------------------------
Passen Sie sich die InteProxy Konfigurationdatei ``inteproxy.cfg`` Ihren
Bedürfnissen an. Nach erfolgter Anpassung wandeln Sie die Konfigurationsdatei
mit Hilfe des Skripts ``create-rewrite-rules.py`` aus dem Verzeichnis
-``/opt/InteProxy-SERVER-1.0.0`` in `Apache RewriteRule Direktiven
+``/opt/InteProxy-SERVER-1.0.2`` in `Apache RewriteRule Direktiven
<http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule>`_ um. ::
./create-rewrite-rules.py --config-file=inteproxy.cfg -o \
@@ -44,7 +44,7 @@
----------------------------------------------------------
Um den InterProxy Server als seperaten `VirtualHost
<http://httpd.apache.org/docs/2.2/mod/core.html#virtualhost>`_ zu betreiben,
-kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.0/server/conf`` die
+kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.2/server/conf`` die
Beispiel-Konfigurationsdatei ``inteproxy.conf`` nach
``/etc/apache2/sites-available/``. Sie können die Beispiel-Konfigurationsdatei
auch als Vorlage für Ihre eigene Konfiguration verwenden.
Modified: trunk/server/doc/source/installationSUSE.rst
===================================================================
--- trunk/server/doc/source/installationSUSE.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/installationSUSE.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -23,14 +23,14 @@
Verzeichnis ``/opt``. ::
cd /opt
- tar zxf InteProxy-SERVER-1.0.0.tar.gz
+ tar zxf InteProxy-SERVER-1.0.2.tar.gz
Anpassen und Umwandeln der InteProxy Konfigurationsdatei
--------------------------------------------------------
Passen Sie sich die InteProxy Konfigurationdatei ``inteproxy.cfg`` Ihren
Bedürfnissen an. Nach erfolgter Anpassung wandeln Sie die Konfigurationsdatei
mit Hilfe des Skripts ``create-rewrite-rules.py`` aus dem Verzeichnis
-``/opt/InteProxy-SERVER-1.0.0/`` in `Apache RewriteRule Direktiven
+``/opt/InteProxy-SERVER-1.0.2/`` in `Apache RewriteRule Direktiven
<http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule>`_ um. ::
./create-rewrite-rules.py --config-file=inteproxy.cfg -o \
@@ -47,7 +47,7 @@
----------------------------------------------------------
Um den InterProxy Server als seperaten `VirtualHost
<http://httpd.apache.org/docs/2.2/mod/core.html#virtualhost>`_ zu betreiben,
-kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.0/server/conf`` die
+kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.2/server/conf`` die
Beispiel-Konfigurationsdatei ``inteproxy.conf`` nach
``/etc/apache2/vhosts.d``. Sie können die Beispiel-Konfigurationsdatei auch
als Vorlage für Ihre eigene Konfiguration verwenden.
Modified: trunk/server/doc/source/installationWindowsServer2003.rst
===================================================================
--- trunk/server/doc/source/installationWindowsServer2003.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/installationWindowsServer2003.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -42,7 +42,7 @@
und Nutzername aus.
Nach erfolgter Anpassung kopieren Sie die Datei nach
-``C:\Programme\Apache Group\Apache2\conf\conf\InteProxy-SERVER-1.0.0\server\conf\inteproxy-rewrite.conf``
+``C:\Programme\Apache Group\Apache2\conf\InteProxy-SERVER-1.0.2\server\conf\inteproxy-rewrite.conf``
**inteproxy-rewrite.conf:**
@@ -101,7 +101,7 @@
<http://httpd.apache.org/docs/2.0/mod/core.html#virtualhost>`_ zu
betreiben, ergänzen Sie am Ende der Datei ``C:\Programme\Apache Group\Apache2\conf\httpd.conf`` noch die folgende Zeile: ::
- Include conf/InteProxy-SERVER-1.0.0/server/conf/inteproxy-WindowsServer2003.conf
+ Include conf/InteProxy-SERVER-1.0.2/server/conf/inteproxy-WindowsServer2003.conf
Wenn Sie sich unsicher sind, wie Apache ihre vhost-Konfiguration
interpretiert, nutzen Sie das Programm ``Test Configuration`` aus
Modified: trunk/server/doc/source/konfigurationsdateiVirtualHost.rst
===================================================================
--- trunk/server/doc/source/konfigurationsdateiVirtualHost.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/konfigurationsdateiVirtualHost.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -7,9 +7,9 @@
openSuSE Distribution nach ``/etc/apache2/vhosts.d``. Die VirtualHost Konfigurationsdatei
``inteproxy.conf`` übernimmt einiges an Automation. So erfolgt das Laden der
benötigten Apache-Module plattform-spezifisch durch die Zeile ``Include
-/opt/InteProxy-SERVER-1.0.0/server/conf/platform-debian.conf`` für die Debian Distribution
+/opt/InteProxy-SERVER-1.0.2/server/conf/platform-debian.conf`` für die Debian Distribution
**oder** durch die Zeile ``Include
-/opt/InteProxy-SERVER-1.0.0/server/conf/platform-suse.conf`` für die openSuSE
+/opt/InteProxy-SERVER-1.0.2/server/conf/platform-suse.conf`` für die openSuSE
Distribution. Sollten Sie die Apache-Module bereits geladen haben, können Sie die
Zeile einkommentieren.
@@ -32,20 +32,20 @@
<VirtualHost *:64609>
ServerAdmin name at domain.de
- DocumentRoot /opt/InteProxy-SERVER-1.0.0/server
+ DocumentRoot /opt/InteProxy-SERVER-1.0.2/server
- TransferLog /opt/InteProxy-SERVER-1.0.0/server/logs/access_log
+ TransferLog /opt/InteProxy-SERVER-1.0.2/server/logs/access_log
- #Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-suse.conf
- Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-debian.conf
+ #Include /opt/InteProxy-SERVER-1.0.2/server/conf/platform-suse.conf
+ Include /opt/InteProxy-SERVER-1.0.2/server/conf/platform-debian.conf
RewriteEngine On
# RewriteLogLevel 0
- RewriteLog /opt/InteProxy-SERVER-1.0.0/server/logs/rewrite.log
+ RewriteLog /opt/InteProxy-SERVER-1.0.2/server/logs/rewrite.log
# Die Datei conf/inteproxy-rewrite.conf beinhaltet die RewriteRules für die
# aktuelle InteProxy Funktionalität. Sollte die Datei nicht existieren, lesen
# Sie im Kapitel 6 wie Sie eine erstellen können.
- Include /opt/InteProxy-SERVER-1.0.0/server/conf/inteproxy-rewrite.conf
+ Include /opt/InteProxy-SERVER-1.0.2/server/conf/inteproxy-rewrite.conf
# Die Direktive Deny bestimmt, welche Hosts beziehungsweise Netzwerke vom
# Zugriff auf eine Server-Ressource ausgeschlossen sind; die gegensätzliche
Modified: trunk/server/doc/source/linkliste.rst
===================================================================
--- trunk/server/doc/source/linkliste.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/linkliste.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -2,18 +2,20 @@
Linkliste
==========
+ * http://archive.apache.org/dist/httpd/binaries/win32/ (Apache HTTP Server Archive für historische win32 Versionen)
+ * http://codespeak.net/lxml/
* http://httpd.apache.org (Apache HTTP Server)
- * http://archive.apache.org/dist/httpd/binaries/win32/ (Apache HTTP Server Archive für historische win32 Versionen)
* http://httpd.apache.org/docs/2.2/mod/core.html (Apache Core Features)
- * http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html (Apache Module mod_rewrite)
+ * http://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html (Apache Module mod_auth_basic)
* http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html (Apache Module mod_authz_host)
+ * http://httpd.apache.org/docs/2.2/mod/mod_filter.html (Apache Module mod_filter)
* http://httpd.apache.org/docs/2.2/mod/mod_proxy.html (Apache Module mod_proxy)
* http://httpd.apache.org/docs/2.2/mod/mod_proxy_http.html (Apache Module mod_proxy_http)
+ * http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html (Apache Module mod_rewrite)
* http://httpd.apache.org/docs/2.2/mod/mod_ssl.html (Apache Module mod_ssl)
- * http://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html (Apache Module mod_auth_basic)
- * http://www.python.org/ (Python Programming Language)
- * http://codespeak.net/lxml/
+ * http://httpd.apache.org/docs/2.2/mod/mod_substitute.html (Apache Module mod_substitute)
* http://inteproxy.wald.intevation.org (InteProxy - Security extension for unsecure OWS clients to secure spatial data infrastructures)
+ * http://www.debian.org/ (Debian GNU/Linux)
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (GNU General Public License, version 2)
+ * http://www.python.org/ (Python Programming Language)
* https://wiki.deegree.org/deegreeWiki/iGeoSecurity (iGeoSecurity - short description of iGeoSecurity)
- * http://www.debian.org/ (Debian GNU/Linux)
Modified: trunk/server/doc/source/proxyRemote.rst
===================================================================
--- trunk/server/doc/source/proxyRemote.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/proxyRemote.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -25,8 +25,10 @@
oder ein * für beliebige URLs.
- Der zweite Parameter ist die vollständige URL des Remote-Servers.
-Die `ProxyRemote` Konfigurationsdirektive sollte in die erste Zeile der
-``inteproxy-rewrite.conf`` eingetragen. Nach erfolgter Anpassung sollte der
-Apache HTTP Server neu gestartet werden.
+Die `ProxyRemote` Konfigurationsdirektive sollte in die VirtualHost
+Konfigurationsdatei ``inteproxy.conf`` eingetragen. Nach erfolgter Anpassung
+sollte der Apache HTTP Server neu gestartet werden.
-**Hinweis**: Eine Proxy Authentifizierung wird zur Zeit noch nicht unterstützt.
+**Hinweis**: Für eine die ``HTTPS_upstream-proxy`` Unterstützung benötigen Sie
+einen Apache Server ab Version 2.2.15! Eine Proxy Authentifizierung wird zur
+Zeit noch nicht unterstützt.
Modified: trunk/server/doc/source/versionsgeschichte.rst
===================================================================
--- trunk/server/doc/source/versionsgeschichte.rst 2010-08-23 14:47:46 UTC (rev 265)
+++ trunk/server/doc/source/versionsgeschichte.rst 2010-09-03 08:12:07 UTC (rev 266)
@@ -2,8 +2,12 @@
Versionsgeschichte
==================
-Aktuell ist Version 1.0.1 vom 11. Mai 2010.
+Aktuell ist Version 1.0.2 vom 2. September 2010.
+Neu seit Version 1.0.2 vom 11. September 2010
+---------------------------------------------
+ * Erweiterung: URL Rewriting in WMS Capabilities Antworten
+
Neu seit Version 1.0.1 vom 11. Mai 2010
---------------------------------------
* Erweiterung: Dokumentation der InteProxy-Server-Variante unter Windows 2003 (SP2)
More information about the Inteproxy-commits
mailing list