|
|
 |
RE: FN-FORUM Setting up a secure site
date posted 24th May 2001 14:15
AAAAAARRRRRRRGGGGGGHHHHHHHH damn HTL emails, and why does Outlook 2000
assume I want to answer in BLUE text, can anyone tell me how I can stop
Outlook doing that?
Anyway, SSL.
All a digital cert does is enable a VirtualHost to use encrypted transfer.
So once you have your cert and your key you just have to add some extra
Directives to tell Apache (assuming you are using Apache) where the file is
that holds the certificate:
SSLCertificateFile /path/to/cert
And where the key is:
SSLCertificateKeyFile /path/to/key
And:
SSLEngine on
to tell it to use SSL, you also need to tell it to listen on Port 443, so an
example configuration would be:
Listen 10.9.8.7:80
Listen 10.9.8.7:443
##
## SSL Virtual Host Context
##
DocumentRoot /home/httpd/docs
ServerName certificate.domain.com
ServerAdmin [EMAIL REMOVED]
SSLEngine on
SSLCertificateFile /path/to/cert
SSLCertificateKeyFile /path/to/key
HTH
Alex.
-----Original Message-----
From: [EMAIL REMOVED]
[EMAIL REMOVED] Behalf Of Ben Empson
Sent: 24 May 2001 13:19
To: [EMAIL REMOVED]
Subject: FN-FORUM Setting up a secure site
Hi all, does anybody know where I can look for advice / a step-by-step
process on how to set up a secure (SSL) site?
Regards, Ben
================================================================
= Array[x] =
= delivering design aware programming solutions =
= www.arrayx.co.uk = = [EMAIL REMOVED] =
= +44 (0)7780 696840 = = 1 Flintham Drive, Sherwood, Notts. NG5 3DS UK =
STANDARD DISCLAIMER: This message is confidential. You should not copy it or
disclose its contents to anyone. You may use and apply the information only
for the intended purpose. Internet communications are not secure and
therefore Array[x] does not accept legal responsibility for the contents of
this
message. Any views or opinions presented are only those of the author and
not those of Array[x]. If this email has come to you in error please delete
it and
any attachments.
----------------------------------------------------------------------------
----
---
Outgoing mail is certified Virus Free using AVG version 6.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.252 / Virus Database: 125 - Release Date: 09/05/2001
|
 |
|