You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by David Gonzalez <dg...@rafastd.org> on 2003/11/16 00:09:10 UTC

[users@httpd] Compiling with SSSL support!

Hello users,

  I've done this to compile Apache 2.0.48 with SSL support.

./configure                     \
--prefix=/wwwroot               \
--enable-mods-shared=all        \
--enable-modules="deflate ssl"  \
--disable-ipv6                  \

And also like this:

./configure                     \
--prefix=/wwwroot               \
--enable-mods-shared=all        \
--enable-ssl-shared             \
--with-ssl=/usr/local/ssl       \
--enable-deflate-shared         \

Both of the above compile the source right,  generate my certificates,
and copy them to the correct place. I start the server with apachecstl
startssl  and  it  starts.  But when i try https://localhost i get the
"Not Found" page.

What  seems  very  straneg to me is the fact that it does not complain
bout anything ssl-related it starts nice.

What am i doing wrong?.

Thanks for the tips or good Apache2 compile howto yu can tell me.

-- 
Best regards,
 David                          mailto:dgonzalez@rafastd.org




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Compiling with SSSL support!

Posted by Joshua Slive <jo...@slive.ca>.
On Sat, 15 Nov 2003, David Gonzalez wrote:
> It now works, just remember to have MM and SSL installed properly ...

MM doesn't have anything to do with it; it isn't used by apache 2.

SSL, of course, would be important.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Compiling with SSSL support!

Posted by Daniel Lopez <da...@rawbyte.com>.
> I'd  like  to  write  some kinda FAQ or HOW-TO on compiling Apache2 on
> *NIX so people don't get confussed when it comes to SSL and such.
 
I have a chapter online about SSL and Apache 2 that you may find useful

http://www.apacheworld.org/ty24/site.chapter17.html

Take care

Daniel

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Compiling with SSSL support!

Posted by David Gonzalez <dg...@rafastd.org>.
Hello David,

Saturday, November 15, 2003, 6:09:10 PM, you wrote:

DG> Hello users,

DG>   I've done this to compile Apache 2.0.48 with SSL support.

DG> ./configure                     \
DG> --prefix=/wwwroot               \
DG> --enable-mods-shared=all        \
DG> --enable-modules="deflate ssl"  \
DG> --disable-ipv6                  \

DG> And also like this:

DG> ./configure                     \
DG> --prefix=/wwwroot               \
DG> --enable-mods-shared=all        \
DG> --enable-ssl-shared             \
DG> --with-ssl=/usr/local/ssl       \
DG> --enable-deflate-shared         \

DG> Both of the above compile the source right,  generate my certificates,
DG> and copy them to the correct place. I start the server with apachecstl
DG> startssl  and  it  starts.  But when i try https://localhost i get the
DG> "Not Found" page.

DG> What  seems  very  straneg to me is the fact that it does not complain
DG> bout anything ssl-related it starts nice.

DG> What am i doing wrong?.

DG> Thanks for the tips or good Apache2 compile howto yu can tell me.

Answer to myself and to thers having the same issue:

I  screwed up and down all the way but finally rememberd i used MM and
EAPI  variables  when i first started messing with Apache 1.3.2x and i
added  those lines at the very begining of my compile script (the ones
showed above) and it did work.

I'd  like  to  write  some kinda FAQ or HOW-TO on compiling Apache2 on
*NIX so people don't get confussed when it comes to SSL and such.

My  script  no  looks  like this and https://www.skynetbbs.org/ now is
SSL'ed :)

#!/bin/bash
EAPI_MM="/usr/local/mm-1.3.0" SSL_BASE="/usr/local/ssl" \
./configure                     \
--prefix=/wwwroot               \
--enable-mods-shared=all        \
--enable-modules="deflate ssl"  \
--disable-ipv6                  \

It now works, just remember to have MM and SSL installed properly ...

C'ya

-- 
Best regards,
 David                            mailto:dgonzalez@rafastd.org




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org