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





_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to