[Yanel-commits] rev 22593 - public/yanel/trunk/src/httpd-2.2.3/conf/extra

michi at wyona.com michi at wyona.com
Mon Feb 12 16:36:27 CET 2007


Author: michi
Date: 2007-02-12 16:36:26 +0100 (Mon, 12 Feb 2007)
New Revision: 22593

Added:
   public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts_WITH_SSL.conf
Log:
with ssl added

Added: public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts_WITH_SSL.conf
===================================================================
--- public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts_WITH_SSL.conf	2007-02-12 15:35:07 UTC (rev 22592)
+++ public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts_WITH_SSL.conf	2007-02-12 15:36:26 UTC (rev 22593)
@@ -0,0 +1,50 @@
+#
+# Virtual Hosts
+#
+# If you want to maintain multiple domains/hostnames on your
+# machine you can setup VirtualHost containers for them. Most configurations
+# use only name-based virtual hosts so the server doesn't need to worry about
+# IP addresses. This is indicated by the asterisks in the directives below.
+#
+# Please see the documentation at 
+# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
+# for further details before you try to setup virtual hosts.
+#
+# You may use the command line option '-S' to verify your virtual host
+# configuration.
+
+#
+# Use name-based virtual hosting.
+#
+#NameVirtualHost *:80
+
+#
+# VirtualHost example:
+# Almost any Apache directive may go into a VirtualHost container.
+# The first VirtualHost section is used for all requests that do not
+# match a ServerName or ServerAlias in any <VirtualHost> block.
+#
+<VirtualHost *:443>
+  ServerName www.example.com
+  ServerAdmin you at example.com
+  ErrorLog logs/error_log_https
+
+  SSLEngine On
+  SSLProtocol All
+  SSLCipherSuite HIGH:MEDIUM
+  SSLCertificateFile conf/server.crt 
+  SSLCertificateKeyFile conf/server.key 
+  #SSLCertificateChainFile conf/server.
+
+  ProxyPass / http://localhost:8080/yanel/
+  ProxyPassReverse / http://localhost:443 
+</VirtualHost>
+
+<VirtualHost *:80>
+  ServerName www.example.com
+  ServerAdmin you at example.com
+  ErrorLog logs/error_log_http
+
+  ProxyPass / http://localhost:8080/yanel/
+  ProxyPassReverse / http://localhost:80 
+</VirtualHost>




More information about the Yanel-commits mailing list