I'm currently having some problems using apache2 as a proxy for webwork2. This is my current apache2 proxy config:
<Location /webwork2/>
ProxyPass http://10.8.0.14:80/webwork2/
ProxyPassReverse http://10.8.0.14:80/webwork2/
</Location>
<Location /webwork2_files>
ProxyPass http://10.8.0.14:80/webwork2_files/
ProxyPassReverse http://10.8.0.14:80/webwork2_files/
</Location>
<Location /webwork2_course_files>
ProxyPass http://10.8.0.14:80/webwork2_course_files/
ProxyPassReverse http://10.8.0.14:80/webwork2_course_files/
</Location>
<Location /webwork2_rpc>
ProxyPass http://10.8.0.14:80/webwork2_rpc/
ProxyPassReverse http://10.8.0.14:80/webwork2_rpc/
</Location>
<Location /pg_files>
ProxyPass http://10.8.0.14:80/pg_files/
ProxyPassReverse http://10.8.0.14:80/pg_files/
</Location>
Is there an easier way of doing this? Am I missing anything obvious?