Java Mailing List Archive

http://www.apache-httpd.com/

Home » users.httpd »

[users@httpd] Rails, fcgid and environment variables

LeVon Smoker

2010-06-03

Replies: Find Java Web Hosting

Author LoginPost Reply
Is there a way to make environment variables stay set when using mod_fcgid?

I have the following section in an apache config:
<VirtualHost x.x.x.x:80>
  ServerName local.domain
  DocumentRoot /var/www/myapp/charts

  RewriteEngine On

  <Directory />

    AuthName "Charts"
    AuthType Basic
    AuthBasicProvider ldap
    AuthLDAPBindDN ldapbind@(protected)
    AuthLDAPBindPassword xxx
    AuthLDAPUrl ldap://x.x.x.x:3268/?sAMAccountName,memberOf?sub
    AuthzLDAPAuthoritative off
    Require ldap-group cn=Charts,ou=Groups,dc=hrcsb,dc=org
    Require ldap-group cn=IT,ou=Groups,dc=hrcsb,dc=org
    Require valid-user

  </Directory>

  RewriteCond %{ENV:AUTHENTICATE_MEMBEROF} (.*cn=(charts|it),.*) [NC]
  RewriteCond %{QUERY_STRING} ^(?!(.*batches=true.*))
  RewriteRule ^/charts
https://charts.local.domain/charts/?batches=true [L]

  RewriteCond %{ENV:AUTHENTICATE_SAMACCOUNTNAME} (.+)
  RewriteCond %{ENV:AUTHENTICATE_MEMBEROF} ^(?!(.*cn=(charts|it),.*)) [NC]
  RewriteCond %{QUERY_STRING} (.*batches=true.*) [NC]
  RewriteRule ^/charts https://charts.local.domain/charts/? [L]

</VirtualHost>

The problem is that with fcgid, the environment variables get unset for
some requests so my rewrites don't work.

Any ideas?
--
LeVon Smoker

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@(protected)
 "  from the digest: users-digest-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)

©2008 apache-httpd.com - Jax Systems, LLC, U.S.A.