[Inteproxy-commits] r228 - trunk/inteproxy_server/conf

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Mar 18 13:44:16 CET 2010


Author: bjoern
Date: 2010-03-18 13:44:13 +0100 (Thu, 18 Mar 2010)
New Revision: 228

Added:
   trunk/inteproxy_server/conf/inteproxy.conf
Log:
Apache 2 VirtualHost configuration for Debian Lenny and openSuSE 10.3


Added: trunk/inteproxy_server/conf/inteproxy.conf
===================================================================
--- trunk/inteproxy_server/conf/inteproxy.conf	2010-03-18 07:01:50 UTC (rev 227)
+++ trunk/inteproxy_server/conf/inteproxy.conf	2010-03-18 12:44:13 UTC (rev 228)
@@ -0,0 +1,42 @@
+<VirtualHost *:64609>
+ServerAdmin admin at server.de
+	
+DocumentRoot /opt/inteproxy_server
+
+TransferLog /opt/inteproxy_server/logs/access_log
+
+#Include /opt/inteproxy_server/conf/platform-suse.conf
+Include /opt/inteproxy_server/conf/platform-debian.conf
+RewriteEngine On
+# RewriteLogLevel 0
+RewriteLog /opt/inteproxy_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
+
+# Deny all requests that have not been rewritten to refer to another
+# host.
+<Directory />
+ Order Deny,Allow
+ Deny from All
+</Directory>
+
+
+
+# SSL configuration.  
+# SSLProxyEngine must be on so that Apache can make
+# https connections to other hosts.
+SSLProxyEngine on
+
+#uncommented because already defined in mods-available/ssl.conf
+#SSLMutex  default 
+SSLProtocol all -SSLv2
+SSLCipherSuite HIGH:MEDIUM:!ADH
+
+#uncommented because already defined in mods-available/ssl.conf
+#SSLRandomSeed startup builtin
+#SSLRandomSeed connect builtin
+
+</VirtualHost>



More information about the Inteproxy-commits mailing list