1
vote
1answer
30 views
How do I reliably access the HttpServletRequest in a jspx when it’s behind a proxy?
I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this:
public String getServerName() {
…
0
votes
1answer
9 views
URL/Apache redirection question. (domain+directory redirect to sudomain)
Hello, I have been trying to figure this out for about 2 hours now. A new requirement came up where it was asked of me to try to find a way to send requests from foo.bar.com/blah to blah.bar.com.
…
0
votes
0answers
28 views
Disable ProxyPass rules within a virtual host on apache 2 [closed]
I have a global proxypass rule in httpd.conf
rules at global level
ProxyPass /test/css http://myserver:7788/test/css
ProxyPassReverse /test/css http://myserver:7788/test/css
and I have a virtual …
0
votes
1answer
22 views
Proxy URL without authentication
I have an Apache web server with basic authentication enabled at the root directory. I can't change this due to business restrictions.
However, we want a particular URL to be a proxy to a different …
0
votes
1answer
46 views
Reverse Proxy in CakePHP?
I've got a CakePHP application, and the following directives in my httpd.conf
ProxyRequests off
ProxyPass /forum/ http://somesite.com/phpbb3
ProxyPass /gallery/ http://someothersite.com/gallery3
…
0
votes
0answers
42 views
Can Apache BalancerMember be configured to use unix domain sockets?
I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).
Like so:
<Proxy balancer://thinservers>
BalancerMember http://127.0.0.1:5000 route=thin0
…
0
votes
0answers
9 views
How to detect network connection failures in mod_proxy?
We have an Apache server accepting connections through mod_proxy from random computers with bad internet connections in Africa. We would like to know how many of these connections are attempted (and …
0
votes
2answers
31 views
How to configure Apache to proxy exactly one file?
(I must be dense - I just can't figure out the Apache documentation on how to do this.)
To speed up some swf development I'm doing, I want to have my local machine fetch my local swf when I browse to …
0
votes
2answers
32 views
combining proxy server modules with my webapplication
I want to implement a autmatic billing systen for one cybercafe.MEasning when some one want to surf net in my cafe he goes to attendent and attendent allocates him the pc and gives him the passswd …
1
vote
2answers
124 views
How to use a different path name in ProxyPass than the Tomcat context name
Hello,
I am using Tomcat 5.5.9 and Apache 2.x
We are trying to use a path name in ProxyPass that is different
than the Tomcat context name.
ProxyPass /path http://localhost:8080/contextname
…
0
votes
1answer
422 views
Apache & JBoss use port 80 at the same time
I have both Apache 2 and JBoss 4.2.3 on the same machine and would like both of them to use port 80. There are several ways I see people doing this mod_jk, mod_proxy, but I'm not sure which one is the …
4
votes
4answers
452 views
Understanding mod_proxy and Apache 2 for writing a comet-server
Hi folks,
I currently try to implement a simple HTTP-server for some kind of comet-technique (long polling XHR-requests). As JavaScript is very strict about crossdomain requests I have a few …
3
votes
3answers
727 views
apache to tomcat: mod_jk vs mod_proxy
What are the advantages and disadvantages of using *mod_jk* and *mod_proxy* for fronting a tomcat instance with apache?
I've been using mod_jk in production for years but I've heard that it's "the …
0
votes
1answer
108 views
Tomcat Clustering and HTTPS Issue
Hi
I have two instances of Tomcat 6 with content accessible via HTTP and HTTPS for other pages.
I have configured the instances this way:
1) Instance one to listen on port 8080(Http) and …
0
votes
0answers
217 views
Apache VirtualHost with mod-proxy and SSL
I am trying to setup a server with multiple web applications which will all be served through apache VirtualHost (apache running on the same server). My main constrain is that each web application …
