Changes between Initial Version and Version 1 of Ticket #8644, comment 24


Ignore:
Timestamp:
Aug 24, 2015, 2:20:09 PM (9 years ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8644, comment 24

    initial v1  
    11Very simply solution:
    22
    3 I moved from Apache Basic auth into AccountManager plugin because of obvious advantages, but lost  access to xmlprc. So i simply reset apache conf back, but only for /login/
    4 
     3I moved from Apache Basic auth into AccountManager plugin because of obvious advantages, but lost  access to xmlprc. So i simply reset apache conf back, but only for `/login/`
     4{{{#!apache
    55<Location ~ "/trac/myTrac/">
    66  AuthUserFile /var/lib/trac/myTrac/trac.htpasswd
    77  Require valid-user
    88</Location>
    9 
    10 into
     9}}}
     10into
     11{{{#!apache
    1112<Location ~ "/trac/myTrac/login/">
    1213  AuthUserFile /var/lib/trac/myTrac/trac.htpasswd
    1314  Require valid-user
    1415</Location>
    15 
     16}}}
    1617And now all users logs using AccountManager and apps which uses xmlrpc - with good-old basic auth.
    1718