Skip to main content

Diigo Home

HowToInstall/ApacheProxy - Galaxy - Trac - The Diigo Meta page

g2.trac.bx.psu.edu/...ApacheProxy - Cached - Annotated View

mitsuteru nakao's personal annotations on this page

nakao_mitsuteru
Nakao_mitsuteru bookmarked on 2008-12-01 galaxy openid

External authentication and $REMOTE_USER

  • Any method that sets $REMOTE_USER in the server environment is allowed (Basic Authentication, mod_auth_foo, Cosign, ...).
  • ince $REMOTE_USER is not, by default, passed to the proxied application, you must add the following lines to your Apache config to ensure it's passed:
  • RewriteCond %{IS_SUBREQ} ^false$
    RewriteCond %{LA-U:REMOTE_USER} (.+)
    RewriteRule . - [E=RU:%1]
    RequestHeader set REMOTE_USER %{RU}e

This link has been bookmarked by 1 people . It was first bookmarked on 01 Dec 2008, by mitsuteru nakao.

  • 01 Dec 08
    nakao_mitsuteru
    mitsuteru nakao

    External authentication and $REMOTE_USER

    galaxy openid

    • Any method that sets $REMOTE_USER in the server environment is allowed (Basic Authentication, mod_auth_foo, Cosign, ...).
    • ince $REMOTE_USER is not, by default, passed to the proxied application, you must add the following lines to your Apache config to ensure it's passed:
    • 1 more annotations...