Here is /etc/httpd/conf.d/trac.conf which is being included.
 

##LogLevel debug

Alias /trac/chrome/common /u01/trac/apache/htdocs/common

Alias /trac/chrome/site /u01/trac/apache/htdocs/site

 

<Directory "/u01/trac/apache/htdocs">

  Order allow,deny

  Allow from all

</Directory>

 

WSGIScriptAlias /trac /u01/trac/apache/cgi-bin/trac.wsgi

<Directory /u01/trac/apache/cgi-bin>

  WSGIApplicationGroup %{GLOBAL}

  Order deny,allow

  Allow from all

</Directory>

 

<Location "/trac/login">

  Order allow,deny

  Allow from all

  AuthType Basic

  AuthName "trac"

  AuthBasicProvider "ldap"
 
  AuthLDAPURL 
"ldap://10.201.99.9/ou=ABBREV,dc=somewhereovertherainbow,dc=com?sAMAccountName?sub?(objectClass=user)"

  AuthLDAPBindDN "usernameā€

  AuthLDAPBindPassword "usernamesPassword"

  AuthzLDAPAuthoritative off

  Require valid-user

  

  require ldap-group CN=GROUPNAME,CN=Users,DC=somewhereovertherainbow,DC=com

  Require ldap-attribute 
memberOf="CN=ABBREV,CN=Users,DC=somewhereovertherainbow,DC=com"

</Location>

On Thursday, November 14, 2013 12:22:05 PM UTC-8, Matthew Caron wrote:

> I see nothing in this config about Trac. I fear you may be missing 
> something. 
>
> Anyway, I think part of the issue may be: 
>
> ServerName somewhere.over.the-rainbow.com:80 
>
> I've never used this format before (I use an overall "Listen" directive, 
> and then a NameVirtualHost and separate VirtualHost directives), but 
> reading the apache docs, this suggests that the server will only listen 
> on port 80. So, no SSL. 
>
> Have you verified that connecting to 
> https://somewhere.over.the-rainbow.com actually works? 
>
> If so, it's likely because of this bit: 
>
> # Load config files from the config directory "/etc/httpd/conf.d". 
> # 
> Include conf.d/*.conf 
>
> So, there may be more configs in there. 
>
> -- 
> Matthew Caron, Software Build Engineer 
> Red Lion Controls | www.redlion.net 
> +1 (518) 877-5173 x138 office 
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to