Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Apr 2004 12:23:28 +0100
From:      Matthew Seaman <m.seaman@infracaninophile.co.uk>
To:        RYAN vAN GINNEKEN <rmvg@shaw.ca>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: startssl at boot time
Message-ID:  <20040404112328.GB7849@happy-idiot-talk.infracaninophile.co.uk>
In-Reply-To: <406F324B.1050005@shaw.ca>
References:  <406F324B.1050005@shaw.ca>

next in thread | previous in thread | raw e-mail | index | archive | help

--ADZbWkCsHQ7r3kzd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Sat, Apr 03, 2004 at 02:53:15PM -0700, RYAN vAN GINNEKEN wrote:
> I use freebsd 4.9 stable and apache 2.0.0.49 with mod_ssl when i type
> startssl everything seems to work ie my non ssl sites and my ssl site.
> However on reboot my ssl site does not come up until i run apachectl=20
> stop and then apachectl startssl. How do i make apache start the ssl=20
> stuff at boot time THANK YOU  in advance.

Apply this patch to /usr/local/etc/rc.d/apache2.sh:

% diff -u apache2.sh.orig apache2.sh=20
--- apache2.sh.orig     Sun Apr  4 12:20:39 2004
+++ apache2.sh  Sun Apr  4 12:20:54 2004
@@ -3,7 +3,7 @@
=20
 case "$1" in
 start)
-       [ "ssl" =3D "ssl" -a -f "$PREFIX/etc/apache2/ssl.crt/server.crt" ] =
&& SSL=3Dssl
+       SSL=3Dssl
        [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start${=
SSL} > /dev/null && echo -n ' apache2'
        ;;
 stop)


which just stops the port trying to be clever about autodetecting if
SSL support is needed, and starts apache up with startssl every time.

	Cheers,

	Matthew

--=20
Dr Matthew J Seaman MA, D.Phil.                       26 The Paddocks
                                                      Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey         Marlow
Tel: +44 1628 476614                                  Bucks., SL7 1TH UK

--ADZbWkCsHQ7r3kzd
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (FreeBSD)

iD8DBQFAb/AwdtESqEQa7a0RApDSAJwKY4S4rCR60cjBtj7Oe0j5LCUH7ACfanjL
3+xD29t365ftQQ/NzWVdJIk=
=yOrR
-----END PGP SIGNATURE-----

--ADZbWkCsHQ7r3kzd--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040404112328.GB7849>