Module for the apache webserver with which apache can be used as proxy server. With this module apache can act as a regular proxy, or as a reverse proxy for upstream servers.
1
vote
1answer
598 views
Multiple ProxyPass directives for Webmin on Debian Apache Server
I am trying to achieve what is described under:
Webmin In A Sub-Directory Via A Proxy
on this website
Webmin under Apache Guide
...but, with more than one webmin (all on different servers, but ...
1
vote
0answers
69 views
proxying on localhost
2 Servers: Server 1 on 1 public IP, Server 2 on Local LAN.
I have this working with a proxy on Server1 right now. But I need to add one localhost on Server2 which is NOT a recognized domain. So I am ...
0
votes
1answer
100 views
Redirect stylesheets through secure url to a different server
I have a domain http://services.mydomain.com which has a secure login through a secure central provider (https://secure.mydomain.com) on a different server with proxypass. When I go to the login page ...
5
votes
1answer
961 views
How can I configure mod_proxy not specifically not cache 503 errors?
This is my mod_proxy config:
<IfModule mod_proxy.c>
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /manage/ http://localhost:9000/manage/
ProxyPassReverse /manage/ ...
2
votes
2answers
2k views
Apache ProxyPass Missing Images
I have a apache server that sits in front of my glassfish server. mydomain.com goes directly to my static files on apache, than if you hit the subdomain forum.mydomain.com it goes to the glassfish ...
1
vote
1answer
1k views
Apache / Glassfish integration
So I currently have a glassfish 3.1 server and an apache 2.2 server running on a single box. However I am trying to figure out to route some traffic through the apache server to the glassfish server ...
4
votes
2answers
471 views
mod proxy not working on apache
I am trying to install Mod_Proxy Apache module on WHM/CPanel CeEntOS Linux Server. Here is system info:
CentOS release 5.6 (Final)
Server version: Apache/2.2.21 (Unix)
Cpanel::Easy::Apache v3.7.2 ...
0
votes
1answer
256 views
Glassfish Daemon with Apache and Mod_proxy
I am trying to setup an ubuntu web server which utilizes both Apache's httpd web server for some content and glassfish for Java-based applications. I figured I would use mod_proxy as I've had luck ...
3
votes
1answer
4k views
proxy: pass request body failed
I'm trying to enable proxy virtualhost:
<VirtualHost *:80>
ServerName xxxxx.domain.tdl
SSLProxyEngine On
SSLProxyCheckPeerCN on
ProxyPass / https://localhost:1234
ProxyPassReverse / ...
2
votes
1answer
127 views
apache httpd keep sending http requests to strange IPs
Recently I noticed my server keeps sending data to strange location "121.11.76.48" by netstat -na .
To find out what it is sending , I tried :
tcpdump -i eth0 host 121.11.76.48 -nnvvXSs 1514
And ...
2
votes
0answers
478 views
Making mod_proxy_http send back response asynchronously (w/o 100 Continue)
A servlet engine (Jetty) is running behind an Apache Httpd server, forwarded using mod_proxy_http. This is running a small servlet that accepts PUT requests and is authenticated using HTTP Basic ...
0
votes
1answer
275 views
Apache2, mod_proxy, mod_ssl on OSX not working
I am trying to setup apache2 on OSX and am having an issue. I am trying to proxy a domain to 127.0.0.1:8081 (which is up and running) but when try to load through apache I get a "Web Page Not Found". ...
0
votes
1answer
2k views
How to redirect port 80 (Apache) to port 8080 (Tomcat) using mod_proxy
I understand that to redirect from port 80 to port 8080 I can use the Apache module mod_proxy,
I understand that I have to change "something" to be like this (example from ...
-1
votes
1answer
219 views
1 static IP, 2 web servers with 2 dns working with mod_proxy. Can I do the same with a CISCO router?
I have:
Cisco Router
One static IP.
2 different Web servers with 2 domain names
I have configured a Apache reverse proxy with mod_proxy and is working ok but....
I´m investigating if its posible ...
0
votes
0answers
226 views
How do I rewrite headers returned from mod_proxy_http in apache?
I have a tomcat container which is sitting behind an Apache 2.2 mod_proxy server. At the moment, the tomcat container, when doing a redirect is redirecting to an absolute URL every time using a code ...
0
votes
1answer
251 views
I cannot access to phpmyadmin after installing Jenkins
to install jenkins, as the instructions I followed says, I had to create this virtual host:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName ci.company.com
ServerAlias ...
0
votes
3answers
1k views
How to redirect request for specific domain to a specific web application listening on a specific port?
I have apache2 running on the port 80 and other application server running on 81.
I would like to redirect traffic only for one specific, selected domain (mydomain.com) to server running on the port ...
0
votes
1answer
210 views
Apache - test is SetEnv variable being loaded
Is there any way I can actually tell if a SetEnv variable is being loaded by Apache?
I am trying to set:
SetEnv proxy-sendchunked 1
However have no way in telling if it is actually being set. Is ...
1
vote
0answers
192 views
Add a header depending on the proxied response code with apache
I use Apache 2.2 with mod_proxy to some 3rd party HTTP server.
As it doesn't send any Cache-Control header, I want to add one of 1 day for response code 200, 5 min for 404 and 0 for any other ...
1
vote
1answer
659 views
error 20014 with mod_proxy
I have strange situation. I need to call a program in cgi-bin from within a perl script. When I try to do that with exec($program), I get
(20014)Internal error: proxy: error reading status line from ...
0
votes
1answer
135 views
custom rewrites with apache's mod_proxy and mod_proxy_balancer
I currently have 2 application server nodes behind an apache mod_proxy+mod_balancer load balancer . I am about to deploy a third server, but I want to do a quick test on it. Is there a way I can have ...
0
votes
0answers
156 views
apache mod_proxy timout
we are using apache 2.0.64 with mod_proxy fronting PeopleSoft Financials. While user is uploading a file over a certain size it hangs eventually times out with no log details. When we test this be ...
0
votes
1answer
102 views
How do I configure a reverse proxy to only proxy by file extension?
Let's say I have a vhost with a DocumentRoot and ProxyPass to an application server. I want the proxy to only forward requests with an extension of .xyz and .abc, but everything else should default to ...
1
vote
1answer
345 views
Using apache Mod_proxy_loadbalancer with JBoss
We are using Apache mod_proxy_loadbalancer with 4 backend JBoss, here are the configuration in backend server:
<Proxy balancer://www>
Allow from all
...
0
votes
1answer
271 views
apache and mod_proxy: How can i log which worker was selected?
we are runing an apache reverse proxy in front of several tomcats. sometimes we like to know to which server the request was forwarded. as we use mod_proxy_balancer.
i tried
...
0
votes
2answers
245 views
How can I use mod_proxy to get Apache to use a custom port for a specific URL?
I have a single IP address say 10.10.55.55
I want my VM to use a certain port whenever a specific URL is used, but without having to specify the port.
So instead of saying mydev.net:8200 I'd like to ...
1
vote
2answers
2k views
How to properly use VirtualHost and mod_proxy together for different incoming domain names and internal ports?
I am trying to setup httpd.conf properly but regardless of the sub-domain/domain combo below, they all resolve to the same internal URL.
<Proxy *>
Order Allow,Deny
Allow from all
...
0
votes
1answer
159 views
Apache as a HTTP proxy and filter
I am interested if Apache's mod_proxy can be configured to filter the content sent through it. For example, if a user makes a request to site A then send request X to the server otherwise send an ...
2
votes
1answer
542 views
How to use Apache to proxy from subfolder to other server
Given the following url:
domain.com/wiki/
I'd like apache to redirect all requests below that (so domain.com/wiki/*) to otherdomain.com:8080/. But the trick is I want the user to always see ...
0
votes
1answer
875 views
apache2 mod_proxy without 301 moved permanently?
Is it possible to not send a 301 moved permanently response to the client when using mod_proxy? I would like the client to deal with the reverse proxy as opaquely as possible.
My Virtual Host ...
2
votes
2answers
893 views
How to configure both apache and tomcat on same url?
Say I have a registered URL mywebsite.com pointing to my server with a public IP address.
I want to run both tomcat and apache to serve pages (i.e., some static pages on apache and some dynamic pages ...
0
votes
2answers
152 views
Do I have to open a port for mod_proxy and ProxyPass to work?
Here's my situation:
I have a server running Apache on port 80, a node.js application on port 8000, and I'd like to know if I have to open ports in order for ProxyPass and mod_proxy to work.
Related
...
0
votes
1answer
191 views
Apache rewrite with intermediate proxy server (with authentication)
Using Apache 2.2, I'd like to access an external server (reachable through the Internet) from one of my internal servers. The URLs will be rewritten to change the host so I'll either use mod_rewrite ...
0
votes
2answers
406 views
Can I configure mod_proxy to use different parameters based on HTTP Method?
I'm using mod_proxy as a failover proxy with two balance members.
While mod_proxy marks dead nodes as dead, it still routes one request per minute to each dead node and, if it's still dead, will ...
1
vote
1answer
374 views
Apache mod_rewrite in proxy mode, .htaccess and ProxyPassReverse
In a .htaccess file, I have something like this to proxy Apache to Tomcat:
RewriteRule (.*) http://localhost:8080/tomcat-app/$1 [P]
All the redirects as well as internal links in HTML files are ...
3
votes
2answers
292 views
Apache nested virtual hosts
I have two virtual hosts in a apache server and I would like to do something but I don't know if is possible.
The thing is that I have the main application developed and ruby and the blog is in ...
0
votes
1answer
175 views
mod_proxy security issues
A friend is asking me about mod_proxy modules ,
They have a server that was recently attacked using mod_proxy and after checking his logs he said he wasn't vulnerable to those attacks since they have ...
0
votes
1answer
458 views
HTTP proxy - expect 100 and authentication
I have an issue with Apache2 which I use as a proxy.
My software sends HTTP PUT for protected resource with
Expect: 100-continue
Transfer-Encoding: chunked
And instead of getting '401 ...
2
votes
1answer
1k views
Apache Httpd Custom ErrorDocument 404 When ProxyPass returned 404
I have an Apache web server in front of another application server, using Proxy Pass. When the request to application returned error 404, I want to show custom error page from the web server not the ...
0
votes
1answer
221 views
how to use Apache mod_proxy to provide access to Tomcat webapp
I have defined a Virtual Host for example.com in Tomcat Host Manager.
I can access http://example.com:8080/Web_Application. However I want to use http://example.com/webapp.
I also want to access ...
2
votes
1answer
169 views
GAE dev server behind Apache proxy sometimes slow
As the Google App Engine development server only serves one file at a time, I decided to have static resources served instead by: Apache 2.2.17 / XAMPP 1.7.4 / WinXP32. Requests for dynamically ...
0
votes
1answer
441 views
am i adding mod_proxy on CentOS with tomcat/apache correctly?
I am trying to map a java web application named "Cricket_rank_inspector" to the domain www.CRRI.com/cri
I plan to add the following 2 records to the httpd.conf (under section of VHOST for CRRI.com)
...
0
votes
2answers
423 views
Will there be a performance gain by using Apache's mod_proxy to proxy off static file requests to Lighttpd/nginx?
I know there are lot of tutorials out there which suggest the use either nginx or lighttpd on port 80 and proxy dynamic requests to apache running on a different port. I am not ready to take that leap ...
0
votes
2answers
305 views
need to redirect to static url based off of string patter match in uri
I have siteminder protecting an Oracle ADF java faces app. It appears I am going to have to intercept an http reqeust for the logout link delivered by Oracle in order to kill the siteminder session. ...
0
votes
1answer
520 views
Apache2 mod_proxy, mod_rewrite and mod_cache
I have frontend apache2 and backend tomcat6 with apache lenya.
Proxy works fine but I want to cache images.
Here is my simple config:
ProxyPass / http://192.168.0.82:8888/
ProxyPassReverse / ...
2
votes
1answer
157 views
is it possible to display contents of an external URL through my website?
I have a domain, mydomain.com, which I would like to display content from another site. For example, imagine that there is content at this url --> http://www.foo.com/my/file.bar, and I would like the ...
0
votes
1answer
161 views
Is there any reason to use Apache as a proxy between my users and Glassfish?
I've seen a lot of discussion on the best way to use Apache as a proxy (either mod_proxy or mod_jk) with Glassfish (and other Java application servers), but I haven't seen anybody really explain why.
...
4
votes
2answers
9k views
How to configure mod_proxy to ProxyPass based on http vs https?
I have Apache Tomcat running with SSL enabled. I have Apache HTTP Server acting as a reverse proxy so my if users hit http://myserver/tomcat/ they are passed to http://myserver:8080.
ProxyPass ...
0
votes
1answer
260 views
Publishing VisualSVN via Apache mod_proxy
We are having issues publishing a Windows based VisualSVN Server via an Appache mod_proxy.
Company IS policy does not allow SSL connections to be initiated from external networks and enter into the ...
0
votes
1answer
792 views
Logwatch: connection attempts using mod_proxy
Today I noticed this entry in my log file:
Connection attempts using mod_proxy:
175.180.113.83 -> 66.135.210.61:80: 1 Time(s)
This is something I do not normally see in my logs. I have a few ...