Dominik Müller: Apache mit mod_ssl

Ich habe mir Apache mit dem SSL modul runtergeladen von http://www.modssl.org/contrib/ (http://www.modssl.org/contrib/Apache_1.3.26-Mod_SSL_2.8.10-OpenSSL_0.9.6d-Win32_RAR3_archive_.rar)
Wenn ich danach die httpd.conf normal anpassen, läuft Apache wie gewöhnlich ohne SSL, sobald ich aber das Kommentarzeichen for der Zeile "LoadModule ssl_module modules/mod_ssl.so" entferne und Apache neu Starten will erhalt ich die Fehlermeldung, das Modul werde nicht gefunden, dabei befindet es sich wie angegeben im odrdner modules.

Kann mir jemand helfen, oder hat mir jemand eine gute Anleitung?
Wenn möglich möchte ich mit binaries arbeiten, da ich keinen compiler installiert habe.

  1. hi,

    sobald ich aber das Kommentarzeichen for der Zeile "LoadModule ssl_module modules/mod_ssl.so" entferne und Apache neu Starten will erhalt ich die Fehlermeldung, das Modul werde nicht gefunden

    Bei einem Apache 1.3.x muß auch die Zeile "AddModule mod_ssl.so" wenig darunter aktiviert sein, unter Umständen hast du auch mit
    <IfModule mod_ssl.c>
        Include conf/ssl.conf
    </IfModule>
    noch eine Konfigurationsdatei angesprochen, und schließlich gibts noch allerhand weitere Einträge für die httpd.conf. Das steht aber auch (in englischer Sprache) in der mitgelieferten Dokumentation. Beherzigen sollte man: "One common use of SSL is to secure Web HTTP communication between a browser and a webserver. This case does not preclude the use of non-secured HTTP. The secure version is mainly plain HTTP over SSL (named HTTPS), but with one major difference: it uses the URL scheme https rather than http and a different server port (by default 443). This mainly is what mod_ssl provides to you for the Apache webserver... "

    Grüße aus Berlin

    Christoph S.