831 questions
1
vote
0
answers
33
views
ProxyPassMatch backreference issues
I am attempting to take all requests matching the regex ^/(map/maps/[^/]*/live/.*) redirect into a local server http://127.0.0.1:8100/. However, the path that needs to be passed to the backreference ...
0
votes
4
answers
252
views
Design question - How to Invoke Legacy service efficiently?
We have two applications App1 and App2.
App1 - Legacy search application on Java6 (being upgraded to Java 8) with legacy UI; Request payload is a complex string delimited structure
App2 - Java 8 on ...
1
vote
1
answer
259
views
Multiple Proxy/ReverseProxy on Apache
I have a service on port 3000 with Proxy/ReverseProxy on Apache at Port 80 on http://myserver/foo.
I want to put another server on port 3456 and Proxy/ReverseProxy it from http://myserver/bar on ...
0
votes
2
answers
110
views
Combination of URL rewrite and proxying in apache failing - with 404 Not Found Path
Hello Apache experts ,
I have a third party http web application listening on a server on port 8080. The third party application needs request URL to be of the form
http://hostname:8080/?accnum=<...
0
votes
1
answer
1k
views
How to proxy websocket and http over lighttpd to different ports?
I have 2 separate applications. One is based on libwebsockts which works on port 8081 and the other based on libmicrohttpd which runs on port 8080. Both of these services run on localhost.
What I am ...
2
votes
2
answers
705
views
Set the base path of an Apache proxy handler
I'm developing an application with 2 containers: apache and php-fpm.
Apache serves requests, and delegates PHP execution to the php-fpm container in its vhost:
<FilesMatch .php$>
...
0
votes
0
answers
1k
views
Apache2 Reverse Proxy HTTPS Error During SSL Handshake
I am setting up Apache2 as a "gateway" inside a private network.
I am trying to forward HTTPS Traffic from outside through internal network with apache2.
I got it to work with HTTP but as ...
0
votes
1
answer
156
views
Read Apache ProxyPass from a conf file
I have several proxy pass statements for the same virtual host. I want to move those statements to a conf file that the virtual host reads. Is that possible? Any ideas would be greatly appreciated.
I'...
0
votes
2
answers
283
views
Reverse Proxy for Django App 404 Not Found
I am following this guide to try show this url www.mycompany.com/testblog instead of www.mycompany.com:8000/testblog
These are my current config files setup inside my website.comssl.conf file
<...
-1
votes
1
answer
816
views
Apache HTTP forward proxy to multiple destinations
I'm trying to set up an apache HTTP service as a forward proxy that can proxy some requests to another proxy server and other requests directly. I have a Virtual host configured like
<VirtualHost ...
1
vote
2
answers
642
views
How to make Apache httpd proxy to backend https service use TLSv1.2 instead of TLSv1
ssl.conf:
SSLEngine on
SSLProxyEngine On
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLProxyProtocol all -SSLv3 -TLSv1 -TLSv1.1
someproxy.conf:
ProxyPass /x https://x:8443
ProxyPassReverse /x https://x:...
0
votes
1
answer
2k
views
ProxyPass Exclude path
i configured an apache proxy to forward all calls to another web server. I need to exclude the path http://my-server/{var1}/api/{all-path} (where var1 is variable) from this rule.
How can I do?
Thanks
...
2
votes
0
answers
742
views
Proxy and reverseProxy for specific domain
I am using Apache to serve my Golang website, www.example.com. All the incoming traffic is transferred to the port 8080.
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
...
1
vote
1
answer
83
views
Apache .htaccess subdomain redirect + path proxying (rule chaining?)?
I've got a tricky question, as far as I see it ;)
Currently, I'm in setup of a dynamic branch release pipeline which already takes a branch during pipeline processing and deploys it on our test server ...
2
votes
0
answers
334
views
Apache Reverse Proxy doesn't forward request headers?
I have set up a reverse proxy in my Apache 2.4 virtual host configuration file. However, the additional headers such as API_KEY that get added by the authentication system are not being passed on to ...