Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have simple configuration that enables to do the redirection and rewrite the url but unable to get the include files of the page : all the include files are in sub dir's

i want that every thing will be under users dir for example

http://linuxapp:2222/users/   from http://linux:44444/jsp/app/service/*

for example

/jsp/app/service  
index.jsp  
img/  < all images in here  
app.css  
app.js  

in the index.jsp i include the files like this:

<link rel="STYLESHEET" type="text/css" href="app.css">
<script language="javascript" type="text/javascript" src="app.js"></script>

my mod_proxy and mod_rewrite config in the httpd.conf

ProxyRequests Off
<Proxy *>
       AddDefaultCharset off
       Order allow,deny
       Allow from all
</Proxy>
ProxyPass /users/ http://linux:44444/jsp/app/service/index.jsp
CustomLog /home/logs/proxy_log common
ProxyPassReverse /users/ http://linux:44444/jsp/app/service/index.jsp

Options +FollowSymlinks
RewriteEngine   on
RewriteCond %{REMOTE_ADDR} !(.*$)
RewriteRule ^(.*)$ - [C]
RewriteRule ^/jsp(.*)$ /$1 [F,L]

#forbidden for people who tries use directly /jsp*
#this rules are important because otherwise any host can connect to jsp*...
#because request goes through proxy and tomcat gets connections from localhost .

RewriteCond %{REMOTE_ADDR} ^(.*$)|^(.*:33333$)
RewriteRule ^/jsp([^\.gif\.jpg]+)$ /users$1 [R,L] RewriteRule "^/(.*)" "http://linux:44444/$1";  # main rule everything goes via PROXY
RewriteRule ^/jsp(.*).jsp$ /users/ [R,L] RewriteRule "^/(.*)" "http://linux:44444/$1"; [P] # main rule everything goes via PROXY
RewriteLog /home/logs/rewrite.log
RewriteLogLevel 9

UPDATE:
i simplify the code but still i have problem when i do this i do forword right to the backend server but the problem i can browse to other parts of the back-end server and this i like to DISABLE in the proxy server :

ProxyRequests     off
ProxyPreserveHost on

ProxyPass /users/ from http://linux:44444/jsp/app/service
ProxyPassReverse /users/  from http://linux:44444/jsp/app/service
CustomLog /home/Apache/logs/proxy_log common

i tried to add this but this dsent work and it blocks me from getting into /users/ in the proxy server

<Location "/users/">
    Order allow,deny
    Allow from all
</Location>

update : ok again still the same problem can't load include links....

share|improve this question

closed as off topic by Will Nov 19 '12 at 15:51

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

I'd suggest you start again from scratch, rather than using the over complex RewriteRules you have above.

Note: !(.$) means Not ZERO or more character which is ALWAYS true. The Same for ^(.)$ Which as again will always be true as your looking for ZERO or more characters.

So to start with use Apache's own:

allow from   11.22.33.44
deny  from   22.33.44.55, 22.0.0.0/24

syntax within a Location or Directory block, to control access to either the whole app (root), or just the /users/ mount.

Next issue the proxy pass directive, you should be proxy'ing to the Web App name and not to a specific jsp file, unless you've been playing tomcat will add the default index.jsp onto the URL. Altering the proxy rule should also fix your issue of not being able to access files in the same directory tree as the index.jsp e.g.

ProxyPass        /users/    http://linux:44444/jsp/app/service/
ProxyPassReverse /users/    http://linux:44444/jsp/app/service/

From a quick look at your logic above I'm guessing you'll also require an addition root proxy pass below that of the /users/ mount, haven't unpicked you logic, to work out the app structure, but something along the following lines.

ProxyPass        /         http://linux:44444/jsp/app/
ProxyPassReverse /         http://linux:44444/jsp/app/
share|improve this answer
Thanks for the replay , well when i implement the ProxyPass And ProxyPassReverse its working and i gut foreword to the right url in the backend server , but i still can also get access to the rest of the application even if i set the location block , see my update code – user63898 Nov 15 '12 at 5:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.