[Mono-list] mod_mono and SSL

DI Mag. Rainer Burgstaller rainer.burgstaller@web.de
Tue, 25 May 2004 09:22:53 +0200


Hi

I have been looking in the lists archives and could not find a clear  
answer if I can run mod_mono now under my SSL domain or not. I have  
mod_mono successfully running on debian under my http site. But when I  
remove it from the http site and put the lines into the virtualhost  
section of the https site it does not work.


here is a snippet of my virtual host configuration.

SNIP

<VirtualHost _default_:443>
         ServerAdmin webmaster@dummy.com
         ServerName secure.dummy.com

         DocumentRoot /www/secure-web
         SSLEngine on

         SSLCertificateKeyFile /etc/apache2/ssl/server.key
         SSLCertificateFile /etc/apache2/ssl/server.crt
         SSLCipherSuite bla...

         <Directory />
                 Options FollowSymLinks
                 AllowOverride None
         </Directory>
         <Directory "/www/secure-web">
                 Options Indexes FollowSymLinks MultiViews
                 AllowOverride None
                 Order allow,deny
                 allow from all
         </Directory>

         Alias /mono "/www/mono"
         MonoApplications "/mono:/www/mono"


         <Location /mono>
                 SetHandler mono
         </Location>
...
ENDSNIP

So I would like to know:

a) does mono under SSL work at all? (maybe I am trying in vain for now)
b) if yes, whats wrong?

regards