I have tried starting it with
./apachectrl start
and with
./apachectrl startssl

both give the same errors

It would be good if someone could have a look at my httpd.config file,
which I have included as an attachment

Laurie


On Tue, 22 Jan 2002, R. DuFresne wrote:

>
> You might save some time here by showing your httpd.config.
>
> And of course you start your server with:  apachectl startssl
>
> yes?
>
> Thanks,
>
> Ron DuFresne
>
> On Tue, 22 Jan 2002, Laurie Young wrote:
>
> > On Tue, 22 Jan 2002, Teodor Cimpoesu wrote:
> > > > 0050 - 00 00 11 00 00 08 00 00-06 00 00 03 04 00 80 02   ................
> > > > 0060 - 00 80 08 92 0d f4 b5 83-60 ae 0b fb 3b 92 08 79   ........`...;..y
> > > > 0070 - 92 79 cf 8c c6 57 64 72-96 4c 0d 63 8d 1f 71 7f   .y...Wdr.L.c..q.
> > > > 0080 - 62 e3                                             b.
> > > > SSL_connect:SSLv2/v3 write client hello A
> > > > read from 0814B5A0 [08150B48] (7 bytes => 7 (0x7))
> > > > 0000 - 3c 21 44 4f 43 54 59                              <!DOCTY
> > >  It looks like the server started to talk plain HTTP .......^
> > > maybe it falled back to NULL?
> >
> > Errr....
> >
> > What does that mean?
> >
> > Laurie
> >
>
>

-- 
==================================================
              Laurie Robert Young
[EMAIL PROTECTED]  |       [EMAIL PROTECTED]
www.wildfalcon.com     |  www.doc.ic.ac.uk/~laurie
              ICQ UIN #20194782
==================================================
###########DSO Modules##################
# LoadModule foo_module modules/mod_foo.so



###########Server Wide Config#########
ServerRoot "/homes/laurie/bin/apache2"
PidFile logs/httpd.pid
Timeout 300
Listen 8080
Listen 443

User laurie

KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0


<IfModule prefork.c>
StartServers         5
MinSpareServers      5
MaxSpareServers     10
MaxClients         150
MaxRequestsPerChild  0
</IfModule>

<IfModule threaded.c>
StartServers         3
MaxClients         150
MinSpareThreads     25
MaxSpareThreads     75 
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>


#########Default Server Config
ServerAdmin [EMAIL PROTECTED]
DocumentRoot "/homes/laurie/bin/apache2/htdocs"

DirectoryIndex index.html

TypesConfig conf/mime.types
DefaultType text/plain
<IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
</IfModule>

ErrorLog logs/error_log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog logs/access_log combined

<Directory />
    Options FollowSymLinks
    AllowOverride None
    DirectoryIndex index.html   
    Order allow,deny
    Allow from all
</Directory>

Alias /manual "/homes/laurie/bin/apache2/manual"

<Directory "/homes/laurie/bin/apache2/manual">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>




<VirtualHost 146.169.4.13:443>
DocumentRoot /homes/laurie/bin/apache2/ssldocs
ServerName stone.doc.ic.ac.uk
ServerAdmin [EMAIL PROTECTED]
ErrorLog /homes/laurie/bin/apache2/logs/ssl_error_log
CustomLog logs/ssl_access_log combined

SSLEngine on
SSLProtocol all
SSLCertificateFile /homes/laurie/bin/apache2/keys/server.crt
SSLCertificateKeyFile /homes/laurie/bin/apache2/keys/server.key
</VirtualHost>








Reply via email to