Changes between Version 3 and Version 4 of SslAuthenticationPlugin


Ignore:
Timestamp:
Sep 7, 2008, 10:52:12 AM (16 years ago)
Author:
Giel van Schijndel
Comment:

expand XML entities (>, etc.)

Legend:

Unmodified
Added
Removed
Modified
  • SslAuthenticationPlugin

    v3 v4  
    5858    SSLOptions -StrictRequire
    5959
    60     <Directory "/usr/share/trac/htdocs">
     60    <Directory "/usr/share/trac/htdocs">
    6161        Options Indexes MultiViews
    6262        AllowOverride None
    6363        Order allow,deny
    6464        Allow from all
    65     &lt;/Directory&gt;
     65    </Directory>
    6666
    67     &lt;Location &#34;/test&#34;&gt;
     67    <Location "/test">
    6868        SetHandler mod_python
    6969        PythonHandler trac.web.modpython_frontend
     
    8787
    8888        # Requires, that the client's CN and e-mail in the certificates equals one of the below
    89         SSLRequire %{SSL_CIPHER_USEKEYSIZE} &gt;= 128
    90     &lt;/Location&gt;
     89        SSLRequire %{SSL_CIPHER_USEKEYSIZE} >= 128
     90    </Location>
    9191
    9292    # Lets still allow basic HTTP authentication
    93     &lt;Location &#34;/test/login&#34;&gt;
     93    <Location "/test/login">
    9494        AuthType Basic
    95         AuthName &#34;Test Trac&#34;
     95        AuthName "Test Trac"
    9696        AuthUserFile /etc/apache2/passwd/trac.example.org/test.passwd
    9797        Require valid-user
    98     &lt;/Location&gt;
     98    </Location>
    9999
    100100    CustomLog /var/log/apache2/trac.example.org/access.log combined
    101101    ErrorLog /var/log/apache2/trac.example.org/error.log
    102 &lt;/VirtualHost&gt;
     102</VirtualHost>
    103103}}}
    104104