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

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

2024-07-12 Thread bruce
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 trying to figure out how to handle this. As far as I can tell, th

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

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

2021-06-01 Thread Carlos Castro
Hi all , I am trying to configure a reverse proxy apache with certificate and redirect to a tomcat without certificate. The first question is to know if this is possible? I am doing this configuration ServerAdmin siste...@x.com ServerName clientes.xx

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

[users@httpd] Apache Reverse Proxy and HTTPS.

2021-04-19 Thread Jason Long
Hello, In below diagram, which server must use HTTPS certification? The Internet ---> Apache Reverse Proxy (Public IP) ---> Web Site (Internal IP) Thank you. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For addi

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.

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

2021-03-16 Thread Jason Long
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.4/ If I have other servers, then I must create a config file for each

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

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

2021-03-11 Thread Jason Long
Hello, I configured my Apache Reverse Proxy as a Load Balancer to handle Back-End servers. When a Back-End server stopped, then another one provide service. How can I do it with Reverse Proxy server itself? When a Reverse Proxy stopped, then another Reverse Proxy provides services? Thank you. -

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

[users@httpd] Apache reverse proxy setting

2019-06-24 Thread Monah Baki
Hi all, I have a centos server running apache 2.4.6 in reverse proxy mode, and I have another backend server running https (used letsencrypt) for the certs I changed my DNS A record www pointing to the IP address of the reverse proxy. http works fine. https works somewhat (I see the IP address of

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

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

2017-11-09 Thread Deanna Stevenson
Hello, I am using apache 2.4.8 on a ubuntu 16.04 LTS. I am using apache as a reverse proxy. I have a website that is using NTLM authentication. 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

[users@httpd] apache reverse proxy 2 applications

2015-09-18 Thread Trenta sis
Hi, we are trying to configure a reverse proxy for two applications, our problem is that we have detected a path conflict app1 uses some resources like: /zimbra/ /service/ /home/ /img/ /css/ /res/ /js/ /skins/ app2 uses /images/ /styles/ /charts/ /js/ /userdocs/ /local/ our probems is that b

[users@httpd] Apache Reverse Proxy deletes from code

2015-06-12 Thread Cruz Villanueva, Juan
Hello to everyone, this is my first post here. I've already searched the forum for a related issue, but none of the results seems to solve my issue. My systems setup is as follows: There is a MS Sharepoint 2013 served on IIS 7 in an internal customer network. This seems to behave correctly from w

[users@httpd] Apache reverse proxy Silverlight

2015-05-26 Thread Sharon Zastre
Hello, I have Apache 2.4.9 OpenSSL 1.0.1g set up as a reverse proxy. It has been working as expected for a long time allowing several reverse proxies including one for Silverlight. A couple weeks ago, Microsoft released an update for Silverlight which seems to have triggered an issue with the

[users@httpd] Apache reverse proxy with Kerberos delegation

2015-01-27 Thread Felix Berlakovich
Hi! My goal: I would like to configure Apache as a reverse proxy for backend applications that use Kerberos authentication. The goal is that users can always use the URL of the reverse proxy to access backend applications while still using Kerberos authentication. From my understanding this re

[users@httpd] Apache Reverse Proxy Help - not getting correct URL for images

2014-05-13 Thread Ku Wei Xiong
I have some error with my apache reverse proxy. Currently I am doing reverse proxy to 4 websites. - 1.1.1.1/a - 1.1.1.2/b - 1.1.1.3/c - 1.1.1.4/d I am having no problem when reverse proxy to a and b website. Image are good and no problem. However, when comes to c and d website. Image

[users@httpd] Apache Reverse proxy

2013-12-27 Thread vitthal.tcs
Hello Everyone, Need help from experts. I want to expose backend https servers over internet through reverse proxy. Backend servers are already have SSL certificates. Do I need to install SSL on reverse proxy too. If I redirect external users requests to https server via reverse proxy then

[users@httpd] apache reverse proxy

2013-09-02 Thread Panzeri Alessandro
I have a reverse proxy machine and a web server machine. The FQDN of the web server machine is fr.example.com. What I need is to configure the reverse proxy such that every request on port 80 to the folder /am is proxied to http://fr.example.com:8080/am. So far I've adde

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

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

2013-07-23 Thread Jason E
Hi, We are using Apache 2.2.23 built using source with default settings. By default it uses prefork and we use mod proxy and mod rewrite. Currently apache is crashing with Seg fault errors but the stack track captured using debugging tool shows exit without core file. Please find below the beginn

[users@httpd] Apache Reverse Proxy with SSL mutul Auth

2013-03-11 Thread chima s
Hi We are using apache as reverse proxy and backend as tomact. In Apache we are terminating the SSL connection and also enabled the client authentication. We are using soapui to test the connectivity and wireshark to check the SSL handshake. Below is wireshark flow dump. I noticed 2 “Change Cip

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.

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

2012-11-22 Thread Bhattacharya, Sudip
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.com and https://mysite.intranet.com. Is there

[users@httpd] Apache Reverse Proxy for Keberos-Enabled Website

2012-10-22 Thread Nguyen, Bao L
Hi All, I have configured Apache to act as a reverse proxy for some of our internal SAP applications. These internal SAP applications already has SSO set up using Kerberos. Is it possible configure Apache to "delegate" the authentication to the internal SAP application so I have to set up

[users@httpd] Apache Reverse Proxy to Backend Server Requiring PHP Auth.

2012-10-10 Thread Brett Kimball
I have need to publish content that is hosted on a server that utilizes PHP authentication. __It is not using Basic Auth.__ I do not have any access to the configuration of that server. A single Username/Password has been provided for all members of our organization to access its content. What

[users@httpd] apache reverse proxy

2012-06-08 Thread al so
What are some use-cases of a configuration where you have Apache webserver configured as a reverse proxy (SSL terminated) to a haproxy. Haproxy in turn is configured as a proxy to various Tomcat webapps over http. This is a open ended question. Obviously in a Clustered environment, one would want

  1   2   >