[Inteproxy-commits] r247 - in trunk/server: conf doc/source
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Mar 19 15:32:43 CET 2010
Author: bjoern
Date: 2010-03-19 15:32:43 +0100 (Fri, 19 Mar 2010)
New Revision: 247
Modified:
trunk/server/conf/inteproxy.conf
trunk/server/doc/source/index.rst
trunk/server/doc/source/installationDebian.rst
trunk/server/doc/source/installationSUSE.rst
trunk/server/doc/source/konfigurationsdateiVirtualHost.rst
Log:
Adapted path in InteProxy server configuration file and documentation to the
new release.
Modified: trunk/server/conf/inteproxy.conf
===================================================================
--- trunk/server/conf/inteproxy.conf 2010-03-19 13:39:13 UTC (rev 246)
+++ trunk/server/conf/inteproxy.conf 2010-03-19 14:32:43 UTC (rev 247)
@@ -1,20 +1,20 @@
<VirtualHost *:64609>
ServerAdmin admin at server.de
-DocumentRoot /opt/inteproxy/server
+DocumentRoot /opt/InteProxy-SERVER-1.0.0/server
-TransferLog /opt/inteproxy/server/logs/access_log
+TransferLog /opt/InteProxy-SERVER-1.0.0/server/logs/access_log
-#Include /opt/inteproxy/server/conf/platform-suse.conf
-Include /opt/inteproxy/server/conf/platform-debian.conf
+#Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-suse.conf
+Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-debian.conf
RewriteEngine On
# RewriteLogLevel 0
-RewriteLog /opt/inteproxy/server/logs/rewrite.log
+RewriteLog /opt/InteProxy-SERVER-1.0.0/server/logs/rewrite.log
# 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 /opt/inteproxy/server/conf/inteproxy-rewrite.conf
+Include /opt/InteProxy-SERVER-1.0.0/server/conf/inteproxy-rewrite.conf
# Deny all requests that have not been rewritten to refer to another
# host.
Modified: trunk/server/doc/source/index.rst
===================================================================
--- trunk/server/doc/source/index.rst 2010-03-19 13:39:13 UTC (rev 246)
+++ trunk/server/doc/source/index.rst 2010-03-19 14:32:43 UTC (rev 247)
@@ -6,6 +6,8 @@
Willkommen zur InteProxy Server Dokumentation!
==============================================
+.. |dummy| replace:: foo bar
+
.. toctree::
:maxdepth: 2
Modified: trunk/server/doc/source/installationDebian.rst
===================================================================
--- trunk/server/doc/source/installationDebian.rst 2010-03-19 13:39:13 UTC (rev 246)
+++ trunk/server/doc/source/installationDebian.rst 2010-03-19 14:32:43 UTC (rev 247)
@@ -21,14 +21,14 @@
Verzeichnis ``/opt``. ::
cd /opt
- tar zxf inteproxy_server-<version>.tar.bz2
+ tar zxf InteProxy-SERVER-1.0.0.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`` in `Apache RewriteRule Direktiven
+``/opt/InteProxy-SERVER-1.0.0`` 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/conf`` die
+kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.0/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-03-19 13:39:13 UTC (rev 246)
+++ trunk/server/doc/source/installationSUSE.rst 2010-03-19 14:32:43 UTC (rev 247)
@@ -23,14 +23,14 @@
Verzeichnis ``/opt``. ::
cd /opt
- tar zxf inteproxy_server-<version>.tar.bz2
+ tar zxf InteProxy-SERVER-1.0.0.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/`` in `Apache RewriteRule Direktiven
+``/opt/InteProxy-SERVER-1.0.0/`` 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/conf`` die
+kopieren Sie hierfür aus dem Verzeichnis ``/opt/InteProxy-SERVER-1.0.0/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/konfigurationsdateiVirtualHost.rst
===================================================================
--- trunk/server/doc/source/konfigurationsdateiVirtualHost.rst 2010-03-19 13:39:13 UTC (rev 246)
+++ trunk/server/doc/source/konfigurationsdateiVirtualHost.rst 2010-03-19 14:32:43 UTC (rev 247)
@@ -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/conf/platform-debian.conf`` für die Debian Distribution
-oder durch die Zeile ``Include
-/opt/inteproxy/server/conf/platform-suse.conf`` für die openSuSE
+/opt/InteProxy-SERVER-1.0.0/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
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
+ DocumentRoot /opt/InteProxy-SERVER-1.0.0/server
- TransferLog /opt/inteproxy/server/logs/access_log
+ TransferLog /opt/InteProxy-SERVER-1.0.0/server/logs/access_log
- #Include /opt/inteproxy/server/conf/platform-suse.conf
- Include /opt/inteproxy/server/conf/platform-debian.conf
+ #Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-suse.conf
+ Include /opt/InteProxy-SERVER-1.0.0/server/conf/platform-debian.conf
RewriteEngine On
# RewriteLogLevel 0
- RewriteLog /opt/inteproxy/server/logs/rewrite.log
+ RewriteLog /opt/InteProxy-SERVER-1.0.0/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/conf/inteproxy-rewrite.conf
+ Include /opt/InteProxy-SERVER-1.0.0/server/conf/inteproxy-rewrite.conf
# Die Direktive Deny bestimmt, welche Hosts beziehungsweise Netzwerke vom
# Zugriff auf eine Server-Ressource ausgeschlossen sind; die gegensätzliche
More information about the Inteproxy-commits
mailing list