On Mon, Feb 03, 2003 at 02:50:29PM -0600, John Nichel wrote:
> I'm Running apache on RH 7.3, and I need it to start on boot.  Problem 
> is, I also need it to start ssl.  My normal command for this is...
> 
> /path/to/apache/apachectl startssl
> 
> I know how to set things up to run on boot, but the problem with this 
> is, I have to enter the password for SSL operation of apache.  How can I 
> make the boot script use the password?
> 

You need to modify an SSL directive, refer to the mod_ssl documentation
for more information on it (security of course)..

this is the defult setting

...

SSLPassPhraseDialog builtin

...

change to

SSLPassPhraseDialog exec:/path/to/your/script

this is the most stupid script:

--------------------
#!/bin/sh
echo password
--------------------

-- 
Mario Michele Macaluso     -o)  | (1) Everything depends. (2) Nothing is     
m.macaluso .@. libero.it   /\\  | always. (3) Everything is sometimes.       
                          _\\_v |                                            
Kernel 2.2.14-5.0 on a i586     |                                            
(All addresses in headers are fake. Only one dot in signature.)



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to