This is a discussion on RE: Need to add/enable/install mod_ssl within the Modssl Users forums, part of the Web Server and Related Forums category; All, I´m told that having the directives in httpd.conf <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
All,
I´m told that having the directives in httpd.conf <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> means that my apache is configured with mod_ssl (thanks to the guy that told me so!) Now the question risen up is how do I do to have my https working? As I mentioned below, already have all certificates and their directives configured. Thanks for your attention. Ingrid -----Original Message----- From: owner-modssl-users@modssl.org [mailto:owner-modssl-users@modssl.org]On Behalf Of Tan, Liao [CMB-IT] Sent: Wednesday, June 18, 2008 12:30 PM To: modssl-users@modssl.org Subject: Need to add/enable/install mod_ssl Hi, experts: >> Here are the environment configuration: >> Web server: Apache/2.0.46 (Unix) mod_jk/1.2.4 >> Server: -HP-UX >> Tomcat: 4.0 I have a apache already installed (by other team, which doesnt know if there´s the module mod_ssl). The final purpose is to secure my current http to https. Already have all cerficates, with the directives in the conf files, and still the https url doesnt work yet. I searched over all logs I could find, and didnt found any string "mod_ssl":(. So I guess I need to do something to enable, install it. Saw in a link that I need to download the source in modssl.org, and other installation procedures as well. But the in my case is that I already have Apache installed, and need only to add/enable/install the mod_ssl module. Ok, now another question to be pointed out: "Make sure any module for your Apache server is compiled with the compiler-flag -DEAPI, or your Webserver might crash or can not be started. Almost all modules I know adds the -DEAPI flag by themself except mod_jserv and mod_jk" But my apache installed is mod_jk (my configuration >> Apache/2.0.46 (Unix) mod_jk/1.2.4). Should I supppose from this that in my case I dont have the DEAPI??? Not sure on what to do now. How will I check if it has DEAPI? I keep doing searches over the net, but in case any of you has some hint and speed up a little bit on my side, it´ll be helpful. Im kind of disorientated with all this thing of https. This´s the 1st time i get into it. So, ask for your detailed support. Thank you! Ingrid __________________________________________________ ____________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List modssl-users@modssl.org Automated List Manager majordomo@modssl.org __________________________________________________ ____________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List modssl-users@modssl.org Automated List Manager majordomo@modssl.org |
|
|||
|
That doesn't sound right. Don't you need a statement like this in your httpd.conf file? LoadModule ssl_module modules/mod_ssl.so The statements that you mentioned will do stuff /only/ if the ssl module is loaded (that's what IfModule means -- If the Module is Present). -Dave On Wed, 18 Jun 2008, Tan, Liao wrote: > All, > > I´m told that having the directives in httpd.conf > > <IfModule ssl_module> > SSLRandomSeed startup builtin > SSLRandomSeed connect builtin > </IfModule> > > means that my apache is configured with mod_ssl (thanks to the guy that told me so!) > > Now the question risen up is how do I do to have my https working? As I mentioned below, already have all certificates and their directives configured. > > Thanks for your attention. > > Ingrid > |