Edgewall Software

Changes between Version 1 and Version 2 of TracClientCertificates


Ignore:
Timestamp:
Sep 7, 2008, 6:42:39 AM (16 years ago)
Author:
Florian Grandel <jerico.dev@…>
Comment:

Formatting

Legend:

Unmodified
Added
Removed
Modified
  • TracClientCertificates

    v1 v2  
    33== Set up your SSL PKI ==
    44I will not explain in detail how to set up SSL for Apache. There are a lot of good step-by-step guides out there that can help you in this:
    5 * In my opinion the best guide is this one: http://www.securityfocus.com/infocus/1818
    6 * The official apache mod_ssl documentation can be found here: http://httpd.apache.org/docs/2.2/ssl/
     5
     6 * In my opinion the best guide is this one: http://www.securityfocus.com/infocus/1818
     7 * The official apache mod_ssl documentation can be found here: http://httpd.apache.org/docs/2.2/ssl/
    78
    89I'll assume that you have the following by now:
    9 * a certificate for your Trac web server
    10 * client certificates for your users (already installed in their browsers)
     10
     11 * a certificate for your Trac web server
     12 * client certificates for your users (already installed in their browsers)
    1113
    1214== How to configure mod_ssl ==
     
    1416
    1517Server configuration (httpd.conf):
     18
     19{{{
    1620<IfModule mod_ssl.c>
    1721...
     
    2125...
    2226</IfModule>
     27}}}
     28
    2329
    2430Virtual host configuration:
     31{{{
    2532...
    2633SSLEngine on
     
    3744  SSLUserName SSL_CLIENT_S_DN_CN
    3845</Location>
     46}}}