On Fri, Feb 27, 2004 at 10:15:04PM +0100, orkun(at)orkun.de wrote:
> hi!
>
> habe $Subject installiert (make install).
> der apache laeuft unverschluesselt und
> alles ist fine.
>
> ich finde aber unter http://www.apache-ssl.org/docs.html
> nicht wirklich die hinweise welche mir sagen, wie ich
> https und http paralell anbieten kann.
> denkbar waere entweder dies ueber die (eine) httpsd.conf
> zu realisieren oder den httpd paralell mit der jeweiligen
> config laufen zu lassen.
>
http://httpd.apache.org/docs-2.0/ssl/ssl_faq.html#parallel
Sollte deine Fragen beantworten.
Weil das FAQ meiner Meinung nach etwas kurz gehalten ist,
zur Erläuterung im Anhang ein Ausschnitt aus meiner httpd.conf
Gruß,
Peter
---------------- httpd.conf -------------------
Listen [::]:80
Listen [::]:443
Listen 0.0.0.0:80
Listen 0.0.0.0:443
[...]
<IfModule mod_ssl.c>
SSLSessionCache dbm:/home/www/run/ssl.session-cache.dbm
SSLMutex sem
SSLRandomSeed startup file:/dev/urandom 1024
SSLRandomSeed connect file:/dev/urandom 1024
</IfModule>
# Redirect non-SSL connections
#
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R=301]
<VirtualHost _default_:443>
SSLEngine On
SSLCipherSuite HIGH:MEDIUM
SSLCertificateFile /home/www/conf/ssl.crt/httpd.crt
SSLCertificateKeyFile /home/www/conf/ssl.key/httpd.key
SSLCACertificatePath /home/www/conf/ssl.crt
SSLVerifyClient none
</VirtualHost>
---------------- httpd.conf -------------------
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Sat 28 Feb 2004 - 09:57:02 CET