RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > News and Announcements > General Discussion

For more information about the ads and why they're here, please see the FAQ
Reply
  #1  
Old 02-08-2007, 06:54 AM
Registered User
 
Join Date: Feb 2007
Posts: 19
Downloads: 0
Uploads: 0
Default Trouble setting up SSL

Okay, I'm quite the n00b at all of this, but I do have RC up and running 100% with no errors anywhere.

Now I need to implement ssl on the entire RC site, login and everything. I have done some research on this forum, and have seen a few things that I need to do, but when I implement those into my config, my site stops working. I am running windows 2000 sp4, Apache 2.2.4, PHP5, and MYSQL 5.0.27, along with HMailserver. I guess I need to make my own ssl cert and key, not too sure how to do that, but I'm very tech savvy, so I'm not too worried about it. I found this openssl for windows that I've got that I'm sure will do the trick.

If anybody can point me in the right direction of how to config RC for ssl, and what to do to apache to kick it into ssl mode, that would be great!

Thanks!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 02-09-2007, 01:43 AM
Registered User
 
Join Date: Feb 2007
Posts: 19
Downloads: 0
Uploads: 0
Default Re: Trouble setting up SSL

Doesn't anybody have RC working with apache and ssl?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 02-09-2007, 09:21 AM
Registered User
 
Join Date: Oct 2006
Posts: 198
Downloads: 0
Uploads: 0
Default Re: Trouble setting up SSL

Never tried Apache on windows. Basic steps on Linux are as follows.

1 Enable mod_ssl on apache (already done with apache 2.0 on linux)
2 Create a cert (again not sure howto on Windows)
3 Confugure a virtual host to us ssl

Code:
<IfModule mod_ssl.c>

<VirtualHost \
            11.11.11.11:443 \
            11.11.11.11:443 \
            >
    DocumentRoot /path to rc
    ServerName rc
    ServerAlias rc.*
    UseCanonicalName Off
    SSLEngine on
    SSLVerifyClient none
    SSLCertificateFile /path to server.crt
    SSLCertificateKeyFile /path to server.key
    <Directory /path to rc>
        <IfModule sapi_apache2.c>
            php_admin_flag engine on
            php_admin_flag magic_quotes_gpc off
            php_admin_flag safe_mode off
            php_admin_value open_basedir "/path to rc:/etc/psa:
/tmp"

        </IfModule>
        SSLRequireSSL
    </Directory>
</VirtualHost>
Might try looking on the apache forums as this is an apache issue.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 12:25 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community