Date: Tue, 06 Apr 2004 00:04:58 -0600 From: RYAN vAN GINNEKEN <rmvg@shaw.ca> To: Matthew Seaman <m.seaman@infracaninophile.co.uk> Cc: freebsd-questions@freebsd.org Subject: Re: startssl at boot time Message-ID: <4072488A.7050200@shaw.ca> In-Reply-To: <20040404112328.GB7849@happy-idiot-talk.infracaninophile.co.uk> References: <406F324B.1050005@shaw.ca> <20040404112328.GB7849@happy-idiot-talk.infracaninophile.co.uk>
next in thread | previous in thread | raw e-mail | index | archive | help
Matthew Seaman wrote:
>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
>>stop and then apachectl startssl. How do i make apache start the ssl
>>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
>--- apache2.sh.orig Sun Apr 4 12:20:39 2004
>+++ apache2.sh Sun Apr 4 12:20:54 2004
>@@ -3,7 +3,7 @@
>
> case "$1" in
> start)
>- [ "ssl" = "ssl" -a -f "$PREFIX/etc/apache2/ssl.crt/server.crt" ] && SSL=ssl
>+ SSL=ssl
> [ -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
>
>
>
Patch guess i am new to patches in fact this is my first one usually
just install the port as is and hope that all the patches are added.
Have compiled a few packages from source but would rather not.
Oh i think i get it it looks like mergemaster the + gets added and the -
gets removed right i will do manually will that work NOPE
please explain how i apply the patch works as i tried to manually edit
the config file and apache did not start at all thank you in advance.
Below is a copy of the edited apache2.sh file.
#!/bin/sh
PREFIX=/usr/local
case "$1" in
start)
SSL=ssl
[ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl
start${SSL} > /dev
;;
stop)
[ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop >
/dev/null && echo
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4072488A.7050200>
