Re: [users@httpd] apache reverse proxy question -- i think

2024-07-13 Thread Frank Gingras
On Sat, Jul 13, 2024 at 5:25 AM Marc wrote: > You can't do this with something like alias? > > Alias "/images/logo.svg" "/var/www/html/berat/public/logo.svg" > > > > > I'd like something like:: > > > >ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg > >ProxyPassReverse /logo.svg

RE: [users@httpd] apache reverse proxy question -- i think

2024-07-13 Thread Marc
You can't do this with something like alias? Alias "/images/logo.svg" "/var/www/html/berat/public/logo.svg" > > I'd like something like:: > >ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg >ProxyPassReverse /logo.svg http://1.2.3.4/berat/public/logo.svg > doesn't work >

Re: [users@httpd] apache reverse proxy question -- i think

2024-07-12 Thread bruce
I'd like something like:: ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg ProxyPassReverse /logo.svg http://1.2.3.4/berat/public/logo.svg doesn't work ProxyPass logo.svg http://1.2.3.4/berat/public/logo.svg ProxyPassReverse logo.svg http://1.2.3.4/berat/public/log

Re: [users@httpd] apache reverse proxy question -- i think

2024-07-12 Thread Frank Gingras
On Fri, Jul 12, 2024 at 6:12 PM bruce wrote: > I have a situation where I'm trying to create a foo.config file for a > test apache app. > > in the html of the app, i have a href="/test.svg". > > the actual test.svg resides in the physical dir: > /var/www/html/berat/public/test.svg > > so I'm try

Re: [users@httpd] Apache Reverse Proxy SSL to TOMCAT no SSL

2021-06-01 Thread Yann Ylavic
Hi, On Tue, Jun 1, 2021 at 5:24 PM Carlos Castro wrote: > > > [] > ProxyRequests On You probably should remove the above line (which is not in the non-SSL virtual host by the way). Regards; Yann. - To unsubscribe, e-mail

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
Thank you Michael. On Tuesday, April 20, 2021, 12:35:08 AM GMT+4:30, Michael Wechner wrote: sure, happy to help! I also received a lot of help on mailing lists :-) I also understand Nick's statement though, that in order to learn, you have to dig in yourself. But it can be a diffic

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread o1bigtenor
On Mon, Apr 19, 2021 at 3:05 PM Michael Wechner wrote: > > sure, happy to help! I also received a lot of help on mailing lists :-) > > I also understand Nick's statement though, that in order to learn, you > have to dig in yourself. > > But it can be a difficult balance sometimes, because sometime

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Michael Wechner
sure, happy to help! I also received a lot of help on mailing lists :-) I also understand Nick's statement though, that in order to learn, you have to dig in yourself. But it can be a difficult balance sometimes, because sometimes one cannot see the forest for the trees anymore. I have been

RE: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread paul.leo
K From: Nick Folino Sent: Monday, April 19, 2021 1:00 PM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache Reverse Proxy and HTTPS. You'll never learn anything if you keep asking people to solve your problems for you. Read the docs I posted for you and look for wo

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
Thanks. When I browse my IP with the HTTPS protocol, then problem solved. On Monday, April 19, 2021, 11:30:34 PM GMT+4:30, Nick Folino wrote: You'll never learn anything if you keep asking people to solve your problems for you. Read the docs I posted for you and look for working exam

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Nick Folino
You'll never learn anything if you keep asking people to solve your problems for you. Read the docs I posted for you and look for working examples on-line. On Mon, Apr 19, 2021 at 2:14 PM Jason Long wrote: > Thank you Michael. > I changed my Virtual Host config file as below: > > > ServerNa

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
Thank you Michael. I changed my Virtual Host config file as below:     ServerName 192.168.56.9     ErrorLog ${APACHE_LOG_DIR}/error_log     CustomLog ${APACHE_LOG_DIR}/access_log combined      RewriteEngine on RewriteCond %{SERVER_NAME} =192.168.56.9 [OR] RewriteCond %{SERVER_NAME} =1

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread o1bigtenor
On Mon, Apr 19, 2021 at 10:20 AM Michael Wechner wrote: > > Hi Jason > > The reverse proxy entries should look something like > > (I'm not the OP - - - but - - - - ) Thank you - - - - I find most docs and almost all man pages are written by experts for experts who just might need a reminder and e

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Michael Wechner
Hi Jason The reverse proxy entries should look something like     ServerAdmin michael.wech...@wyona.com     ServerName www.wechner.ch     ServerAlias wechner.ch     ErrorLog ${APACHE_LOG_DIR}/wechner.ch-error_log     CustomLog ${APACHE_LOG_DIR}/wechner.ch-access_log combined RewriteEngine on R

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Nick Folino
You need to read the documentation and search for examples on how to configure HTTPS. On Mon, Apr 19, 2021 at 8:26 AM Jason Long wrote: > I created a Self-Signed SSL Certificate for Apache and changed my Apache > configuration file on Apache Reverse Proxy Server as below: > > > ServerNa

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
I created a Self-Signed SSL Certificate for Apache and changed my Apache configuration file on Apache Reverse Proxy Server as below:         ServerName 192.168.56.9         ProxyPreserveHost On         ProxyPass / http://192.168.56.9/         ProxyPassReverse / http://192.168.56.9/         Redir

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Nick Folino
http://httpd.apache.org/docs/2.4/ssl/ Nick On Mon, Apr 19, 2021 at 6:37 AM Jason Long wrote: > Thank you. > On my Apache Reverse Proxy, I have a .conf as below: > > # cat /etc/httpd/conf.d/reverse_proxy.conf > > ProxyPreserveHost On > ProxyPass / http://192.168.56.9/ >

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
Thank you. On my Apache Reverse Proxy, I have a .conf as below: # cat /etc/httpd/conf.d/reverse_proxy.conf          ProxyPreserveHost On         ProxyPass / http://192.168.56.9/         ProxyPassReverse / http://192.168.56.9/ And my website configuration file is on "192.168.56.9" server. Thus,

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Michael Wechner
my "definitely at the proxy" was probably answered a little bit too quickly/intuitive :-) As Nick is writing, it depends on your requirements and I was too focused on my own requirements :-) Thanks Michael Am 19.04.21 um 12:17 schrieb Nick Folino: That depends on your requirements.  You can

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Michael Wechner
Hi Jason Definitely "Apache Reverse Proxy (Public IP)", whereas you could use for example https://letsencrypt.org/ https://certbot.eff.org/ Depending on how your connection between "Apache Reverse Proxy (Public IP) ---> Web Site (Internal IP)" is protected, you might also want to consider a

Re: [users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Nick Folino
That depends on your requirements. You can terminate SSL at the proxy or the web server, Nick On Mon, Apr 19, 2021 at 6:08 AM Jason Long wrote: > Hello, > In below diagram, which server must use HTTPS certification? > > The Internet ---> Apache Reverse Proxy (Public IP) ---> Web Site (Internal

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jonathon Koyle
>Why this is a matter to the Apache? In a real scenario, consider that an Apache Reverse >Proxy servicing to 100 web servers, one of these servers is turned off or...Apache must >service to other servers!! >I turned off a server to solve this conflict. Why Apache never read another Virtual >Host co

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Sure. Thank you. On Wednesday, March 17, 2021, 08:26:40 PM GMT+3:30, Antony Stone wrote: On Wednesday 17 March 2021 at 17:44:07, Jason Long wrote: > No, it is not home work. What Eric means is that you should start trying to solve some of these problems on your own, and not ask so

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:53:03, Jason Long wrote: > Thank you Antony. > No, Google and Yahoo are exmaple. So, please use more meaningful names when asking your questions. I've already said that using existing domains which are not yours misleads the person answering into thinking you r

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:44:07, Jason Long wrote: > No, it is not home work. What Eric means is that you should start trying to solve some of these problems on your own, and not ask so many questions here on the list which are either explained in the documentation, or already answered e

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Thank you Antony. No, Google and Yahoo are exmaple. > however you manage that using DNS You meant was my DNS server that when a client write "google.com" in his\her browser and it forward to my Reverse Proxy server with that name and my Reverse Proxy server forward that request to properly serv

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:49:17, Antony Stone wrote: > On Wednesday 17 March 2021 at 17:45:13, Jason Long wrote: > > > In a real scenarios the 100 backend servers run the same > > > application/website, not different ones. This makes them > > > interchangeable. That's why when one goes down

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:45:13, Jason Long wrote: > > In a real scenarios the 100 backend servers run the same > > application/website, not different ones. This makes them interchangeable. > > That's why when one goes down, the reverse proxy can route to another > > transparently. > > Th

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
> In a real scenarios the 100 backend servers run the same application/website, not different ones. This makes them interchangeable.  That's why when one goes down, the reverse proxy can route to another transparently. Thus, for 100 different websites, we need 100 reverse proxy servers. On W

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
No, it is not home work. On Wednesday, March 17, 2021, 08:11:51 PM GMT+3:30, Eric Covener wrote: On Wed, Mar 17, 2021 at 12:36 PM Jason Long wrote: > > Why this is a matter to the Apache? In a real scenario, consider that an > Apache Reverse Proxy servicing to 100 web servers, one o

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Eric Covener
On Wed, Mar 17, 2021 at 12:36 PM Jason Long wrote: > > Why this is a matter to the Apache? In a real scenario, consider that an > Apache Reverse Proxy servicing to 100 web servers, one of these servers is > turned off or...Apache must service to other servers!! > I turned off a server to solve t

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:33:46, Jason Long wrote: > The load balancing is different. It is kind of HA. Yes. > When my real server is down then Apache forward requests to my backup server That is HA. > and my website never down. Right. > Excuse me, according to below diagram, is my co

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
The load balancing is different. It is kind of HA. When my real server is down then Apache forward requests to my backup server and my website never down. Excuse me, according to below diagram, is my configuration work in a real scenario? The Internet ---> Apache Reverse Proxy ---> Apache Web Se

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:21:24, Jason Long wrote: > Why this is a matter to the Apache? In a real scenario, consider that an > Apache Reverse Proxy servicing to 100 web servers, one of these servers is > turned off or...Apache must service to other servers!! I turned off a > server to solv

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 17:05:37, Jason Long wrote: > Thank you. > My VM uses port forwarding. When I browse 127.0.0.1:2080 on my host then it > forwarded to my guest port 80. That's neither here nor there for what we're discussing. > > Are you suggesting that a request which *would* go to

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Why this is a matter to the Apache? In a real scenario, consider that an Apache Reverse Proxy servicing to 100 web servers, one of these servers is turned off or...Apache must service to other servers!! I turned off a server to solve this conflict. Why Apache never read another Virtual Host conf

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Eric Covener
On Wed, Mar 17, 2021 at 12:05 PM Jason Long wrote: > > Thank you. > My VM uses port forwarding. When I browse 127.0.0.1:2080 on my host then it > forwarded to my guest port 80. > > > Are you suggesting that a request which *would* go to 192.168.1.4 if it were > turned on, should in fact go to 192

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Thank you. My VM uses port forwarding. When I browse 127.0.0.1:2080 on my host then it forwarded to my guest port 80. > Are you suggesting that a request which *would* go to 192.168.1.4 if it were turned on, should in fact go to 192.168.1.20 if 192.168.1.4 is turned off? Yes. My browser can't di

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 15:15:49, Jason Long wrote: > One of my Apache server (192.168.1.4) is turned off and I tried to see my > server. Please specific exactly how you "tried to see my server". > Reverse Proxy must show other Apache server(192.168.1.20) Are you suggesting that a request

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
I changed my Virtual Host config as below:     ServerName node3     ErrorLog /var/log/httpd/node3_error_log     TransferLog /var/log/httpd/node3_access_log                ProxyPass  http://192.168.1.4/          ProxyPassReverse   http://192.168.1.4/                    ServerName node4      Err

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 14:57:06, Jason Long wrote: > My current configuration is: > > > ServerName node3 > ErrorLog /var/log/httpd/error_log > TransferLog /var/log/httpd/access_log > I don't like the look of the / in that tag. It's closing the tag before you've de

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
My current configuration is:      ServerName node3      ErrorLog /var/log/httpd/error_log      TransferLog /var/log/httpd/access_log                ProxyPass  http://192.168.1.4/           ProxyPassReverse   http://192.168.1.4/                    ServerName node4      ErrorLog /var/log/httpd/err

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 14:40:32, Jason Long wrote: > Thank you. > Which part of my configuration is wrong? I don't know. I've lost track of what your configuration looks like now. > My Reverse Proxy can see my Apache web servers and as I said, its worked > with one host, but can't work w

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Thank you. Which part of my configuration is wrong? My Reverse Proxy can see my Apache web servers and as I said, its worked with one host, but can't work with two hosts. it sounds like, my Reverse Proxy just see the first Virtual Host config!!! On Wednesday, March 17, 2021, 05:03:10 PM GMT

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 14:28:29, Jason Long wrote: > I want to have one Reverse Proxy server that service to some web servers > that each of them has theirs domains and IPs. I want to know, for 10 > different websites that each of them has different IPs and domain names, I > need 10 Reverse

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Thanks. Yahoo and Google was example. Your examples (serviceA.example.com and serviceB.example.com) are subdomains of the exmaple.com.  I used Yahoo and Google because they are different domains. My scenario is just experimentation. I want to have one Reverse Proxy server that service to some web

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 13:25:34, Jason Long wrote: > No, I don't need a load balance. Okay, so each request goes to one back-end server, and if that server is unavailable, the request fails. You do not expect the request to be sent to another backend server instead. > I want my Reverse

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Eric Covener
On Wed, Mar 17, 2021 at 8:26 AM Jason Long wrote: > > No, I don't need a load balance. Let me clear it. Consider below diagram: > > The Internet ---> Apache Reverse Proxy ---> Apache Web Server 1 (IP: 1.2.3.4, > Name: Yahoo.com) > -

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
No, I don't need a load balance. Let me clear it. Consider below diagram: The Internet ---> Apache Reverse Proxy ---> Apache Web Server 1 (IP: 1.2.3.4, Name: Yahoo.com)      ---> Apache Web Server 2 (IP: 1.2.3.5, Name: Google.com) Plea

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Eric Covener
On Wed, Mar 17, 2021 at 8:09 AM Jason Long wrote: > > Thank you. > I saw https://stackoverflow.com/questions/50611098. I tested it, but got the > same result. > I changed my Virtual Host file as below: > > > ServerName node3 > ErrorLog /var/log/httpd/error_log > TransferLog /var/l

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
Thank you. I saw https://stackoverflow.com/questions/50611098. I tested it, but got the same result. I changed my Virtual Host file as below:      ServerName node3      ErrorLog /var/log/httpd/error_log      TransferLog /var/log/httpd/access_log                ProxyPass  http://192.168.1.4/     

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Nick Folino
This list isn't your private school. Put in the effort, read and understand the documentation. If you don't understand it, read it again. Spend a few hours or days playing with your config files to see what happens when you change them. You need to have an understanding of how networks and proxy

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Antony Stone
On Wednesday 17 March 2021 at 12:34:44, Jason Long wrote: > I'm a newbie and as you said you are here from 2010. OK, tell me how can I > configure an Apache Reverse Proxy to service to the multiple web servers? I did a Google search for "Apache reverse proxy multiple web servers". https://stacko

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-17 Thread Jason Long
You wrong. I'm a newbie and as you said you are here from 2010. OK, tell me how can I configure an Apache Reverse Proxy to service to the multiple web servers? https://www.letmegooglethat.com/?q=How+to+use+Apache+reverse+proxy+for+multiple+web+server I looked at the document too:  https://httpd.a

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Stormy
On 2021-03-16 5:43 p.m., Jason Long wrote: I used Name-based Virtual Host too: Dear moderators, I have been subscribed to this list since 2010-10-16, 6:34 p.m. and have always enjoyed collegial conversations and learned a lot. The person promoting this thread, whose email address contains t

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Jason Long
I used Name-based Virtual Host too: The content of reverse_proxy1.conf file:         ServerName node3 ProxyPreserveHost On         ProxyPass / http://192.168.1.20/         ProxyPassReverse / http://192.168.1.20/ The content of reverse_proxy2.conf file:         ServerName node4       

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Jason Long
I created two files under "/etc/httpd/conf.d" directory: reverse_proxy1.conf reverse_proxy2.conf The content of reverse_proxy1.conf file:         ProxyPreserveHost On         ProxyPass / http://192.168.1.20/         ProxyPassReverse / http://192.168.1.20/ The content of reverse_proxy2.conf fil

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Eric Covener
On Tue, Mar 16, 2021 at 5:00 PM Jason Long wrote: > > It show me below error: > The server is temporarily unable to service your request due to maintenance > downtime or capacity problems. Please try again later > > Why? We don't know, we didn't read the error log either. --

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Stormy
On 2021-03-16 4:23 p.m., Jason Long wrote: Thanks. Thus, I can one .conf file under the "/etc/httpd/conf.d/" directory with some servers. For example, [snip] Maybe semantic, maybe not absolute, maybe you've already read or been told, but using .d locations for user/programatic orientated file

Re: [users@httpd] Aw: Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Jason Long
Thus, for each server I need a config file? On Wednesday, March 17, 2021, 12:12:09 AM GMT+3:30, Florian Schwalm wrote: No, you can only have one virtual host per port. Either you make the second server accessible on a different port or you separate them by server name (namebased virt

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Jason Long
It show me below error: The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later Why? On Wednesday, March 17, 2021, 12:08:07 AM GMT+3:30, Daniel Ferradal wrote: Try and let us know your results. El mar, 16 mar

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Daniel Ferradal
Try and let us know your results. El mar, 16 mar 2021 a las 21:23, Jason Long () escribió: > > Thanks. > Thus, I can one .conf file under the "/etc/httpd/conf.d/" directory with some > servers. For example, > > #Server 1 > > ProxyPreserveHost On > ProxyPass / http://192.168.1.4/

[users@httpd] Aw: Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Florian Schwalm
No, you can only have one virtual host per port.Either you make the second server accessible on a different port or you separate them by server name (namebased virtual hosts) or path... Either way you'd need to decide how you want to distinguish from the user's point of view which server the

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Jason Long
Thanks. Thus, I can one .conf file under the "/etc/httpd/conf.d/" directory with some servers. For example, #Server 1         ProxyPreserveHost On         ProxyPass / http://192.168.1.4/         ProxyPassReverse / http://192.168.1.4/ #Server 2         ProxyPreserveHost On         ProxyPass /

Re: [users@httpd] Apache Reverse Proxy for more than one website.

2021-03-16 Thread Antony Stone
On Tuesday 16 March 2021 at 19:16:56, Jason Long wrote: > Hello, > For a website, I created a reverse proxy config file under the > "/etc/httpd/conf.d/" directory as below: > > > ProxyPreserveHost On > ProxyPass / http://192.168.1.4/ > ProxyPassReverse / http://192.168.1.

Re: [users@httpd] Apache Reverse Proxy and Load Balancer.

2021-03-15 Thread Jason Long
Yes. I create a load balancer my Apache website, but I'm thinking about my Reverse Proxy itself. On Monday, March 15, 2021, 04:15:52 PM GMT+3:30, Jim Albert wrote: On 3/15/2021 7:25 AM, Jason Long wrote: > Thanks. > Thus, Apache can't help me about it? I need something like Clusterin

Re: [users@httpd] Apache Reverse Proxy and Load Balancer.

2021-03-15 Thread Jim Albert
On 3/15/2021 7:25 AM, Jason Long wrote: Thanks. Thus, Apache can't help me about it? I need something like Clustering or... On Monday, March 15, 2021, 02:14:55 AM GMT+3:30, Daniel Ferradal wrote: Perhaps you are looking to configure orchestration of some kind in your infrastructure,

Re: [users@httpd] Apache Reverse Proxy and Load Balancer.

2021-03-15 Thread Jason Long
Thanks. Thus, Apache can't help me about it? I need something like Clustering or... On Monday, March 15, 2021, 02:14:55 AM GMT+3:30, Daniel Ferradal wrote: Perhaps you are looking to configure orchestration of some kind in your infrastructure, but that is probably offtopic here. El j

Re: [users@httpd] Apache Reverse Proxy and Load Balancer.

2021-03-14 Thread Daniel Ferradal
Perhaps you are looking to configure orchestration of some kind in your infrastructure, but that is probably offtopic here. El jue, 11 mar 2021 a las 20:29, Jason Long () escribió: > > Hello, > I configured my Apache Reverse Proxy as a Load Balancer to handle Back-End > servers. When a Back-End s

Re: [users@httpd] Apache reverse proxy setting

2019-06-24 Thread Eric Covener
> Not sure if it's possible, but I want to keep the ssl certs on the backend > server and want to just redirect both http and https to the backend server on > the reverse proxy, is it possible? It's not possible with any reverse proxy. By definition, it's going to handshake w/ the client using i

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-14 Thread Deanna Stevenson
Thanks a lot Yann for your input. Currently we are looking into alternative authentication methods. I am running this alongside modsecurity, and I wanted to post Osama Elnaggar's suggestion here, who was great enough to read my posts both here and modsecurity list to provide a suggestion. Might he

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-10 Thread Yann Ylavic
Deanna, On Fri, Nov 10, 2017 at 3:17 AM, Deanna Stevenson wrote: > Thanks Yann. I am on ubuntu 16.04 and apache 2.4.8, and looks like the MPM > module I have right now is "event", which seems to be default for modern > OSs. It seems like in 2.4 I can load different MPM modules at run time, and >

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-09 Thread Deanna Stevenson
Thanks Yann. I am on ubuntu 16.04 and apache 2.4.8, and looks like the MPM module I have right now is "event", which seems to be default for modern OSs. It seems like in 2.4 I can load different MPM modules at run time, and don't have to recompile apache. Do you agree? If yes, can I switch back and

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-09 Thread Yann Ylavic
Hi Deanna, On Thu, Nov 9, 2017 at 6:24 PM, Deanna Stevenson wrote: > > After researching it turned out to be related with maintaining persistent > connections. For NTLM to work through a reverse proxy, client connections need to be associated with backend ones (1:1), that is the proxy must (re)u

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-09 Thread Deanna Stevenson
Yes, its the backend server that is doing the authentication. I see 401 errors - Unauthorized: Access is denied due to invalid credentials Here are reference posts with similar problems, to give you some understanding of my problem. The last one has lot of details, and explains "Tying authenticati

Re: [users@httpd] Apache Reverse Proxy and NTLM Authentication Help!

2017-11-09 Thread Nick Kew
On Thu, 2017-11-09 at 10:24 -0700, Deanna Stevenson wrote: > The traffic seems to be proxied right as I get the authentication > popup window, but the window keeps popping up even after supplying > correct credentials. That's the backend that's authenticating, right? What does its log say? Do

Re: [users@httpd] Apache reverse proxy - Child pid exit signal Segmentation fault (11)

2013-07-23 Thread Jason E
Hi Eric, Thank you very much for quick response. This library belong to OpenAM 3.0.3 policy agent which is installed in apache. Is there a way that I can find the root-cause? Thanks, Jason On Tue, Jul 23, 2013 at 10:58 PM, Eric Covener wrote: > >from /opt/web_agents/apache22_agent/lib/li

Re: [users@httpd] Apache reverse proxy - Child pid exit signal Segmentation fault (11)

2013-07-23 Thread Eric Covener
>from /opt/web_agents/apache22_agent/lib/libamapc22.so You need to work with the vendor that supplied the module above. -- Eric Covener cove...@gmail.com - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For addit

Re: [users@httpd] Apache Reverse Proxy & Caching configuration for HTTPS

2012-11-22 Thread Tom Evans
On Thu, Nov 22, 2012 at 12:02 PM, Igor Galić wrote: > > > - Original Message - >> Hi Friends, >> >> I have the below Reverse Proxy setup. I am also doing caching for a >> few folders which serve static content. >> It is working fine for HTTP URLs. >> >> I have to now enable this proxy appr

Re: [users@httpd] Apache Reverse Proxy & Caching configuration for HTTPS

2012-11-22 Thread Igor Galić
- Original Message - > Hi Friends, > > I have the below Reverse Proxy setup. I am also doing caching for a > few folders which serve static content. > It is working fine for HTTP URLs. > > I have to now enable this proxy approach for HTTPS on both URLs. I > will now have https://mysite.

Re: [users@httpd] Apache Reverse Proxy Configuration

2012-03-28 Thread Igor Cicimov
Have a look at mod_proxy_html On Mar 29, 2012 10:37 AM, "Jonas Eckerman" wrote: > On 2012-03-28 20:04, Campbell, Jomori (US - Arlington) wrote: > > # Maximo >> ProxyPass /maximo/ >> https://app.servername.com/**maximo/ >> ProxyPassReverse /m

Re: [users@httpd] Apache Reverse Proxy Configuration

2012-03-28 Thread Jonas Eckerman
On 2012-03-28 20:04, Campbell, Jomori (US - Arlington) wrote: # Maximo ProxyPass /maximo/ https://app.servername.com/maximo/ ProxyPassReverse /maximo/ https://app.servername.com/maximo/ ProxyPass /webclient/ https://app.servername.com/ webclient / Prox

Re: [users@httpd] Apache Reverse Proxy Configuration

2012-03-28 Thread Simone Caruso
On 28/03/2012 20:04, Campbell, Jomori (US - Arlington) wrote: > On the front end we have Apache 2.2.21 running on Windows 2003 > We configured Apache as a Reverse Proxy using mod_proxy > > On the back end we have a COTS application by IBM called Maximo > This application is deployed on WebLogic an

RE: [users@httpd] Apache Reverse Proxy Configuration

2012-03-28 Thread Campbell, Jomori (US - Arlington)
t must be present to support # starting without SSL on platforms with no /dev/random equivalent # but a statically compiled-in mod_ssl. # SSLRandomSeed startup builtin SSLRandomSeed connect builtin -Original Message- From: fREW Schmidt [mailto:fri...@gmail.com] Sent: Wednesday, March

Re: [users@httpd] Apache Reverse Proxy Configuration

2012-03-28 Thread fREW Schmidt
On Wed, Mar 28, 2012 at 12:09 PM, Campbell, Jomori (US - Arlington) wrote: > We currently have an Apache Reverse Proxy set up in a client’s environment. > The issue that we are facing with the Apache Reverse Proxy is that any type > of JavaScript or servlets that use JAVA are not being proxied c

Re: [users@httpd] Apache reverse proxy 2-way SSL authentication

2011-12-06 Thread Igor Galić
- Original Message - > Hello list, > I am investigating what kind of reverse proxy solution would fit a > customers requirement. I am also looking at Apache. One of the Apache? We have a couple of proxies at Apache, like Apache httpd's mod_proxy, and then there's Apache Traffic Server ;)

Re: [users@httpd] apache reverse proxy and remote proxy to ssl destination host…

2011-06-08 Thread Mike Braendle
additional info System: Server version: Apache/2.2.3 Server built: Apr 15 2011 07:01:14 Red Hat Enterprise Linux Server release 5.6 (Tikanga) Linux 2.6.18-238.1.1.el5 #1 SMP Tue Jan 4 13:32:19 EST 2011 x86_64 x86_64 x86_64 GNU/Linux /var/log/httpd/error_log: [Mon Jun 06 15:43:41 2011] [error]

RE: [users@httpd] Apache Reverse Proxy Server Accessing backend https through front https server

2011-04-04 Thread Ruiyuan Jiang
..@gmail.com] Sent: Friday, April 01, 2011 10:33 PM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache Reverse Proxy Server Accessing backend https through front https server What if you change Redirect / https://backend/ to Redirect / https://sitename/ On Apr 2, 2011 5:56 AM, "Ru

Re: [users@httpd] Apache Reverse Proxy Server Accessing backend https through front https server

2011-04-01 Thread Igor Cicimov
What if you change Redirect / https://backend/ to Redirect / https://sitename/ On Apr 2, 2011 5:56 AM, "Ruiyuan Jiang" wrote: Hi, all I have a Apache reverse proxy server (v2.2.17). There is a web server with backend https server. When internet users access the sit, they use http://sitename and

Re: [users@httpd] Apache Reverse Proxy

2011-01-21 Thread Jeroen Geilman
On 1/21/11 12:51 PM, Christian Pascher wrote: So, if I want to provide HTTPS connections, it is possible to use a Apache Server as loadbalancer? It's always nice to get new requirements after the fact. You did not specify HTTPS before, did you ? AFAIK mod_proxy will handle both http-to-https

Re: [users@httpd] Apache Reverse Proxy

2011-01-21 Thread Christian Pascher
So, if I want to provide HTTPS connections, it is possible to use a Apache Server as loadbalancer? And how do I configure that? Chris Am 19.01.2011 23:44, schrieb Jeroen Geilman: On 1/18/11 10:29 PM, Christian Pascher wrote: Hi, I have a topology with two apache webservers. I want to set up

Re: [users@httpd] Apache Reverse Proxy

2011-01-19 Thread Jeroen Geilman
On 1/18/11 10:29 PM, Christian Pascher wrote: Hi, I have a topology with two apache webservers. I want to set up a new server as a reverse proxy with caching and load balancing. mod_proxy_balancer will do nicely. As far as I know, this works fine with apache and I don't need extra software

RE: [users@httpd] Apache Reverse Proxy

2011-01-18 Thread Jeff Poling
Chris, I recently inherited responsibility for two apache servers that function as reverse proxies. They work really well. I am still learning, but I believe all you need is mod_proxy to get the reverse proxy functionality. Jeff Jeffrey Poling System Administrator | Information Systems Moody