Hi,
First, Sorry but, I'm a newbie with Apache and my questions will certainly appear stupid.
To configure apache2, I've followed this wiki : http://wiki.g2.bx.psu.edu/Admin/Config/Apache%20Proxy
And I write these instructions :
<Proxy http://localhost:8080>
Order deny,allow
Allow from all
</Proxy>
RewriteEngine on
<Location "/">
# Define the authentication method
AuthType Basic
AuthName Galaxy
AuthUserFile /home/nate/htpasswd
Require valid-user
# Take the $REMOTE_USER environment variable and set it as a header in the proxy request.
RewriteCond %{IS_SUBREQ} ^false$
RewriteCond %{LA-U:REMOTE_USER} (.+)
RewriteRule . - [E=RU:%1]
RequestHeader set REMOTE_USER %{RU}e
</Location>
RewriteRule ^/static/style/(.*) /home/nate/galaxy-dist/static/june_2007_style/blue/$1 [L]
RewriteRule ^/static/(.*) /home/nate/galaxy-dist/static/$1 [L]
RewriteRule ^/favicon.ico /home/nate/galaxy-dist/static/favicon.ico [L]
RewriteRule ^/robots.txt /home/nate/galaxy-dist/static/robots.txt [L]
RewriteRule ^(.*) http://localhost:8080$1 [P]
</Location>