Edgewall Software

Changes between Version 90 and Version 91 of TracOnWindows


Ignore:
Timestamp:
Jul 8, 2005, 2:46:35 PM (19 years ago)
Author:
Shun-ichi Goto <gotoh@…>
Comment:

Added description of SSPIOmitDomain and introduced new mod_auth_sspi binary.

Legend:

Unmodified
Added
Removed
Modified
  • TracOnWindows

    v90 v91  
    296296  SSPIAuthoritative On
    297297  SSPIOfferBasic On
     298  SSPIOmitDomain Off
    298299  # following line squishes bug #1168 if IE has troubles editing wiki pages.   
    299300  SSPIBasicPreferred On
     
    306307LoadModule sspi_auth_module modules/mod_auth_sspi.so
    307308}}}
    308 You must download and install this module. It can be found here: http://tortoisesvn.tigris.org/mod_auth_sspi.zip
     309You must download and install this module. It can be found here:
     310http://www.gknw.net/development/apache/httpd-2.0/win32/modules/mod_auth_sspi-1.0.2-2.0.54.zip
    309311
    310312 Or compile it into Apache. Note when adding permissions and authenticating against a domain you may need to use the following syntax complete with quotes as seen in #1055. 
     
    312314
    313315 ''Note'': Internet Explorer may be in trouble with an Apache server running SSPI authentication. See #1343
     316
     317 With example above, you must specify user name like "DOMAIN\username"
     318 If you hate "DOMAIN\username" format, {{{SSPIOmitDomain}}} option is usefull. Set it ON!
     319{{{
     320  SSPIOmitDomain On
     321}}}
     322 
     323 If this option is ON, the mod_auth_sspi passes authentication name to an Apache server without a domain part.
     324 As result, you can manage user names with simply 'username' instead of 'DOMAIN\username'
     325 in apache password file and {{{trac-admin}}} command, and also, it is used by Trac for reporter name, author and so on.
     326
     327 * permission add username TRAC_ADMIN
     328 
     329 But remember that you must specify "DOMAIN\username" format on authentication dialog although this option is ON.
     330
     331 ''Note'': Older version of mod_auth_sspi (like http://tortoisesvn.tigris.org/mod_auth_sspi.zip) doesn't
     332 support {{{SSPIOmitDomain}}} and has bug for basic authentication. 1.0.2 introduced above is recommended.
    314333
    315334