
caleboverly at gmail
Apr 15, 2012, 3:23 PM
Views: 293
Permalink
|
|
Authentication with mod_wsgi and Apache
|
|
I'm having problems getting authentication working with mod_wsgi and Apache. I'm running trac on my webserver which has Cent OS and Apache, MySQL and mod_wsgi plugins TRAC Error Authentication information not available. Please refer to the installation documentation<http://dev.pravusmedia.com/wiki/TracInstall#ConfiguringAuthentication> . Here is my .conf file for the site I'm trying to enable: WSGIScriptAlias /trac /home/my-site/public_html/trac/trac.wsgi <Directory /home/my-site/public_html/trac/cgi-bin/> WSGIApplicationGroup %{GLOBAL} Order deny,allow Allow from all </Directory> ServerName dev.my-site.com DocumentRoot /home/my-site/public_html/trac/htdocs/ WSGIScriptAlias / /home/my-site/public_html/trac/cgi-bin/trac.wsgi <Location /login> AuthType Basic AuthName "Trac" AuthUserFile /home/my-site/public_html/trac/htpasswd Require valid-user </Location> </VirtualHost> Can someone please help? thanks, caleb -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/trac-users/-/dDMGGHu-jlEJ. To post to this group, send email to trac-users [at] googlegroups To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
|