Hi James,

On Mon, Jan 12, 2009 at 11:15:24AM -0700, James Ward wrote:

> I need to move my BackupPC from port 80 to https.  I searched in  
> google and tried to search the mailing list archives, but I can't find  
> a guide.  I need to move a version 2.1.2pl1 server.  It's using stock  
> debian apache 1.3.

That's not related to BackupPC, but Apache configuration only. I'm
running my BackupPC (3.1.0) on https only.

It boils down to enabling SSL (which might be distribution specific),
generating/installing an SSL certificate and configuring an SSL-enabled
VirtualHost in Apache like this:

<VirtualHost 10.x.y.z:443>

# ... your existing BackupPC configuration stays here ...

        SSLEngine on

        SSLCipherSuite 
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

        SSLCertificateFile /etc/apache2/ssl.crt/yourservername.crt

        SSLCertificateKeyFile /etc/apache2/ssl.key/yourservername.key

        SSLCertificateChainFile /etc/apache2/ssl.crt/your-ca.crt

        SSLCACertificatePath /etc/apache2/ssl.crt
        SSLCACertificateFile /etc/apache2/ssl.crt/ca-bundle.crt

</VirtualHost>

AFAIK, you don't need to change anything in BackupPC.

HTH,

Tino.

-- 
"What we nourish flourishes." - "Was wir nähren erblüht."

www.lichtkreis-chemnitz.de
www.craniosacralzentrum.de

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to