From owner-freebsd-questions Tue Sep 7 12:56: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id C845814F5C for ; Tue, 7 Sep 1999 12:55:56 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.9.3/8.9.3) id MAA17241 for questions@freebsd.org; Tue, 7 Sep 1999 12:55:37 -0700 (PDT) Date: Tue, 7 Sep 1999 12:55:37 -0700 From: Shawn Ramsey To: questions@freebsd.org Subject: mod_ssl question Message-ID: <19990907125536.B13943@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know this isn't exactly FreeBSD related.. but I couldn't find this info on the mod_ssl web site. How should I define SSL enabled virtual hosts? This is how I have it : ## ## SSL Virtual Host Context ## # General setup for the virtual host DocumentRoot /usr/local/www/data/cpl-dev ServerName 209.150.92.97 ServerAdmin shawn@cpl.net #ErrorLog /usr/local/log/error_log #TransferLog /usr/local/log/access_log SSLEngine on SSLCertificateFile /usr/local/etc/apache/ssl.crt/cpl.crt SSLCertificateKeyFile /usr/local/etc/apache/ssl.key/cpl.key SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown CustomLog /usr/local/log/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" DocumentRoot /home/tobey/public_html/lucknowenterprises.com ServerName 209.150.92.95 ServerAdmin shawn@cpl.net #ErrorLog /usr/local/log/error_log #TransferLog /usr/local/log/access_log SSLEngine on SSLCertificateFile /usr/local/etc/apache/ssl.crt/www.lucknowenterprises.com.crt SSLCertificateKeyFile /usr/local/etc/apache/ssl.key/www.lucknowenterprises.com.key SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown I get a virtual host overlap error when starting, which I assume is because they are both default. What should I change? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message