[BACK]Return to keyring.conf CVS log [TXT][DIR] Up to [local] / palm / Palm-Keyring / examples / cgi / conf

Diff for /palm/Palm-Keyring/examples/cgi/conf/keyring.conf between version 1.2 and 1.3

version 1.2, 2009/06/15 18:48:38 version 1.3, 2010/01/19 17:44:12
Line 1 
Line 1 
 # $RedRiver: keyring.conf,v 1.1 2009/06/11 20:40:45 andrew Exp $  # $RedRiver: keyring.conf,v 1.2 2009/06/15 17:48:38 andrew Exp $
 ScriptAlias /keyring/ "/keyring/bin/keyring.cgi/"  ScriptAlias /keyring "/var/www/keyring/bin/keyring.cgi"
   
 <Location "/keyring">  <Location "/keyring">
     RewriteEngine On          # You will need to replace us.holligan.net with your server name
     RewriteCond %{HTTPS} off          SSLOptions +StrictRequire
     RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}          SSLRequireSSL
           SSLRequire %{HTTP_HOST} eq "us.holligan.net"
           ErrorDocument 403 https://us.holligan.net/keyring
 </Location>  </Location>
   
 <Directory "/var/www/keyring">  <Directory "/var/www/keyring">
Line 12 
Line 14 
         Deny from all          Deny from all
 </Directory>  </Directory>
 <Directory "/var/www/keyring/bin">  <Directory "/var/www/keyring/bin">
       AuthType Basic
       AuthName "Keyring Access"
       AuthUserFile /var/www/conf/htpasswd
       AuthGroupFile /var/www/conf/htgroup
       Require group keyring
   
     Options ExecCGI FollowSymLinks      Options ExecCGI FollowSymLinks
     AllowOverride None      AllowOverride None
     Order allow,deny      Order allow,deny

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>