Chris Howell wrote: > Hi Folks, > > Ok you've been absolutely traffic in helping me so far. I was wondering > if anyone could give me an idea of what their password file is formatted > like for authentication purposes. Also does it matter where this file > lives ?
You're using Apache, so use the htpasswd command to manage the password file. It only matters where you put it with respect to the configuration directives in your Apache config. For example, I can use an htpasswd file that is outside of my Trac config like so: <LocationMatch "/tracsrv/project1/login"> AuthType Basic AuthName "Trac" AuthUserFile /etc/httpd/conf.d/trac.htpasswd Require valid-user </LocationMatch> HTH, Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
