Tagged Questions
1
vote
2answers
50 views
How to mask a tomcat app behind an apache subdomain?
I have two separate servers: an Apache public server and an internal Tomcat one. I would like our users to be able to use our Tomcat apps without exposing the details of our implementation (actual ...
0
votes
0answers
16 views
Re-writing the URL's in page source
Is there a way we can rewrite the URL's appearing in page source?
What I'm trying to do is... I have deployed my application on tomcat and created a proxy using httpd.
Now I want to enable URL ...
2
votes
2answers
37 views
New to .htaccess and RewriteRule
I'm making a site where users can create subdomains with files, folders etc.
these sites go into a folder called websites so it will be
site.com/websites/subdomain.site.com
I only need to get ...
1
vote
0answers
35 views
How to add .htaccess {REQUEST_URI} at the end of this Rewrite Rule? [duplicate]
Im making a site where users can create subdomains with files, folders etc.
these sites go into a folder called websites so it will be site.com/websites/subdomain.site.com
I only need to get ...
0
votes
0answers
58 views
apache rewrite without changing url but changing server params in php
Ok, been searching for hours now, it seems like a though one, but please bear(? beer? xD) with me, it might be really simple for all i know. (i'm not implying i'm drunk!)
tried about everything i ...
0
votes
2answers
215 views
.htaccess - Redirect from subdomain root to subdomain's folder (mod_rewrite/mod_proxy)
Problem
I am trying to redirect from the root folder of a sub-domain, e.g. sub.example.com, to a sub-directory of the sub-domain and keep the sub-domain in the address bar, e.g. ...
1
vote
2answers
42 views
Is it possible to use “%{HTTP_HOST}” in ProxyPass?
I'm trying to implement a transparent proxy using apache2 and mod_proxy that for now - doesn't do anything. just forwards the traffic to the correct "host".
I don't want it to be host-dependant - but ...
1
vote
1answer
186 views
Redirect loop on attempted web proxy
I have an Apache server running WordPress in the web root (/var/www/html). In my access_log I have been seeing many entries of the form:
98.209.16.114 - - [15/Feb/2013:21:19:51 -0500] "GET ...
0
votes
2answers
338 views
Apache Reverse Proxy - Stop Trailing Slash Redirection
I'm migrating a site running static HTML on a Sun One (iPlanet) 6.1 to a Drupal site on Apache.
There is a requirement to keep the old server running and serving old content until it can be moved ...
0
votes
0answers
40 views
Mod proxy and mod_rewrite rule reg
I have this setup where I pass all the requests from apache port 80 to tomcat app listening on 8080 using the following in my httpd.conf file
ProxyPass /myapp http://localhost:8080/myapp
...
0
votes
0answers
94 views
lighttpd configuration to proxy/rewrite from one domain to another
i need to setup proxy/rewrite on lighttpd!
i have server1, which serves via http 2 different web app paths:
* http://server1/path1
* http://server1/path2
also, i have lighttpd server in front of ...
3
votes
3answers
210 views
mod_rewrite not working to secure grails application
I have a grails application running on tomcat and I'm using mod_proxy to connect http server with it. My goal is to secure the login process.
My VirtualHost configuration to force https is:
...
1
vote
0answers
157 views
Instructions to run CherryPy behind Apache under Ubuntu
I'm planing to run my web server using CherryPy behind Apache. The idea is to let Apache handle the static files while CherryPy handles the web apps. After searching here and there I feel persuaded to ...
0
votes
0answers
70 views
loadbalancing between contexts with a different name
What i have: Two tomcats running on different hosts.
host-1:8080/foo
host-2:8080/bar
The application is the same, but due special cirumstances, it's not possible to use the same name for both ...
0
votes
0answers
68 views
restrict publicly accessble http url using apache
i have a webapp which provides authentication and authorization for all public users. within this app i embedded one more webapp as iframe. But, people whoever knows iframe url can access the same ...
0
votes
1answer
89 views
Apache RewriteRule flags proxy NS
I'm trying to write the following rules (see comments)
# Redirect example.org/sub/* to sub.example.org/* explicitly
RewriteCond %{REQUEST_URI} ^/sub(.+)$ [NC]
RewriteRule ^ http://sub.%{HTTP_HOST}%1 ...
0
votes
0answers
57 views
About Apache redirect in local area network
I have host, it has two network address(IP), one is 202.xxx.xxx.xxx, it's a external IP and has a domain name(www.justtest.com), another IP address is a local area IP, 192.168.1.100. This host is a ...
0
votes
0answers
43 views
apache proxy rule on this <http://myserver.com/proxy/http://www.site.com>
i have a URL like this
http://myserver.com/proxy/http://www.site.com
http://myserver.com -> my server
/proxy/ -> folder site to make proxy
http://www.site.com -> site to go
I want to make ...
1
vote
1answer
555 views
apache httpd mod_proxy load balancing with multiple virtual hosts url redirection
scenario
OS centos
webserver apache http version 2.2.23
two weblogic servers clustered
two webservers
above are behind a hardware load balancer
Basically wanted to do url redirection and load ...
0
votes
1answer
424 views
mod_proxy and mod_rewrite , can't locate include files ( js,css,images) [closed]
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 ...
0
votes
1answer
231 views
External URL with mod_rewrite and mod_proxy in WAMP
I am using WAMP on my local server, I am trying to redirect a local directory to an external domain name, for example:
http://myhost.dev/directory should redirect to http://www.google.com
However, I ...
0
votes
1answer
442 views
Apache [P] redirect: noDecode % to %25
I have the following Rewrite Rule set to:
RewriteRule ^db/(.*)$ http://127.0.0.1:5984/app/$1 [P]
On my httpd.conf file I have:
AllowEncodedSlashes NoDecode
Where I would like to submit ...
1
vote
1answer
93 views
RewriteRule causes POST data to get dumped before I can access it [closed]
I'm currently setting up my own 'webserver' (a Ubuntu Server on some old hardware) so I can have a mess around with PHP and get some experience managing a server.
I'm using my own little MVC ...
3
votes
2answers
176 views
Apache running in infinite loop, request URI too long
I want to read a value from cookie and pass that value as a query string, for that i have used the following rules
**1 : "RewriteCond %{HTTP_COOKIE} !^preferenceLocale=([^;]+) [NC]
RewriteRule ...
1
vote
2answers
179 views
how to properly mod_rewrite
I am using apache2 + tomcat on ubuntu 10.4. I am running on tomcat server that has webapps listening on 8080
"http://internal:8080/dir/name-privatewebapp/"
...
0
votes
1answer
551 views
apache tomcat + apache httpd + mod_proxy + mod_rewrite + form post data
please help me. I did try to find similar problem here reading old posts, but I didn't find anything.
I have a problem with post data.
I'm using Apache tomcat + ajp + Apache Httpd 2.2
Here is a part ...
0
votes
0answers
108 views
Disable caching of errors when using Apache RewriteRule as a proxy
If using ProxyPass, caching of errors is disabled using the retry option:
ProxyPass /mirror/foo/ http://backend.example.com/ retry=0
How does one achieve the same using RewriteRule?
RewriteRule ...
1
vote
2answers
667 views
Apache Rewrite or proxy
I have an Apache server running on my machine (port 80)
I have a Zope server running on my machine (port 8080)
i want all users, irrespective of domain (lets use www.example.com for now) to be pushed ...
0
votes
1answer
190 views
.htaccess - mod_dir with RewriteRule Proxy
I am running into an unusual problem. I have a series of sites that art pointing to my hosted site, for example purposes:
http://sub.mydomain.com/help/
All these other sites use this .htaccess file
...
0
votes
0answers
74 views
How do I forward only a single router port and still use mod_rewrite and/or mod_proxy?
I have a bit of an odd situation. I have a server that I need to set up behind a router (without DMZ). I need to use a combination of port forwarding (on the router) and mod_rewrite, or mod_proxy ...
1
vote
0answers
285 views
Proper ProxyPassReverse with rewrite
I'm trying to do something similar to the Coral cache.
For example if a client/browser looks up google.com.foo.com, it gets passed to a proxy by apache and serves a proxied/cached version of ...
0
votes
0answers
333 views
mod_rewrite Condition to redirect Drupal errors to a php script when using mod_proxy_fcgi->PHP-FPM?
I'm running Drupal 7.14.
The webserver runs Apache 2.4.3 + mod_proxy_fcgi & PHP 5.4.5 + PHP-FPM.
I use the following mod_rewrite config to redirect the Drupal vhost's php traffic to php-fpm,
...
1
vote
1answer
605 views
Redirect https requests to different port
I have multiple websites on one Magento install. Three of these sites have different SSL certificates. SNI is not an option so we decided to use different ports to handle the requests.
In Virtual ...
1
vote
1answer
985 views
Apache with kerberos + mod_proxy + mod_rewrite recursion
I've configured an Apache server to provide SSO and reverse-proxying for our Splunk installation as per the config below. SSO works as does the reverse-proxy hiding the Splunk instance running on port ...
0
votes
1answer
229 views
False configured mod_rewrite/mod_proxy with squid proxy
We are using squid for one of our applications and we are getting an abuse message from a website saying He used xrumer or other Tools or had a false configured mod_rewrite/mod_proxy who is abused.
...
0
votes
1answer
664 views
Apache mod_rewrite mod_proxy redirect
I am trying to redirect /foreman to https://someurl:4343
I am using:
SSLProxyEngine on
ProxyPass /foreman https://MyIP:4343/
ProxyPassReverse /foreman https://MyIP:4343/
Results so far are ...
0
votes
1answer
230 views
Using mod_proxy to re-direct to a https sub-domain?
This is something I've asked previously, with a suggested solution of using mod_proxy, but unfortunately even with that I cannot get this working :(
I want to re-direct from a regular link to a https ...
1
vote
3answers
787 views
Apache proxying subdomain root requests
Description
Internal Tomcat server that has webapps listening on 8080:
"http://internal:8080/foo-webservice/"
"http://internal:8080/foo-website/"
External facing Apache server is proxying requests ...
0
votes
1answer
437 views
Tomcat, Mod_rewrite, Mod_proxy: how do I keep the original URI path in a proxied request?
I'm using the following configuration to proxy requests and rewrite urls from Apache to Tomcat using mod_rewrite, mod_proxy.
# In apache virtual hosts
ProxyRequests Off
ProxyPreserveHost On
...
# ...
0
votes
1answer
188 views
Apache proxy - Dynamic cookies
I'm trying to do something I though would be quite simple, but I struggle :)
I have a reverse proxy running on Apache. I'm trying to get urls like /a/b?session=1-2 to be proxied to a diffrent host ...
0
votes
2answers
1k views
Use apache as a foward proxy and redirect all reques to a static page
I trying to set up Apache as proxy which will eventually rewrite requests for JavaScript files to a different codes base. I have Apache set up and acting as a proxy but no matter what I do it will not ...
0
votes
1answer
423 views
Using RewriteRule's resulting url(regex) in ProxyPassReverse
My webserver is hosting many apps whose path looks like
http://example.com/app1/
http://example.com/app2/ ...
I wanted to have temporary links to these apps which can be easily configured to be ...
0
votes
1answer
24 views
Rewriting a Mod Rewrite
So, my host went down recently and I had to move to a new host - but that means my htaccess file got lost in the move...
And now I've got to rewrite it, but it was a crapshoot to begin with...
What ...
3
votes
1answer
4k views
Do I need to use ProxyPassReverse if I'm using mod rewrite?
I am using mod rewrite to mask the context root of my application. For example,
RewriteRule ^/directory/(.*) balancer://appcluster/directory/$1 [P]
The appcluster looks like this:
<Proxy ...
0
votes
1answer
464 views
apache mod_proxy www.domain.com fails, domain.com works - whats wrong?
I have a apache setup that redirect to my app running on tomcat. Loading http://domain.com works fine. However http://www.domain.com gives me a 404 error.
What am I missing?
NameVirtualHost ...
2
votes
1answer
6k views
How to rewrite / proxy an Apache URI to an application listening on a specific port / server?
They say that Apache's mod_rewrite is the swiss-army knife of URL manipulation, but can it do this?
Lets say I want to add a new application to my Apache webserver, where the only configurable option ...
2
votes
1answer
1k views
Is there a way to remove apaches Reverse Proxy Request Headers?
When acting as a reverse proxy, apache adds x-forwarded headers as described here.
http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#x-headers
In my configuration I have configured server A as a ...
0
votes
0answers
62 views
Domain masking — getting url1 to serve up content from url2
I have two servers -- let us call them server1.com and server2.com. They are not on the same domain.
What I would like to be able to is have it so that when a user navigates their web browser to ...
0
votes
1answer
728 views
httpd2.2 using reverse proxy with RewriteCond goes into infinite loop
I want to direct incoming requests that do not a specific cookie set (c_cntry) and the request URL does not have a country value as the first element in path to an internal service that will attempt ...
0
votes
1answer
291 views
apache2 tomcat6 mod_rewrite with pretty urls loses user session info - empties shopping cart
I have tried this with both mod_jk and mod_proxy and get the same result.
Using this mod_rewrite rule works fine:
RewriteRule ^/(.*)\-blah.html$ /blah/blah/blah?blah=l2vb&party_name=$1 [R,L]
...





