[users@httpd] Doubts in apache-2.4.37

2019-01-14 Thread Hemant Chaudhary
Hi Team, I have following doubt, please help me to understand 1) I am using worker MPM and according to architecture, each child process creates one worker listener thread which has mutex and listens on the port. If I am using two ports 80 and 443 then whether each child creates two listener thre

[users@httpd] About Using ProxyPass Directive

2019-01-14 Thread Osman Zakir
The application I want to deploy behind the reverse proxy is in the E:\programming\visual_studio_2017\Projects\currency_converter\x64\Release directory on my computer, and I got a free subdomain from https://www.subdomain.com which forwards to my external IP address which I got from searching "

Re: [users@httpd] Doubts in apache-2.4.37

2019-01-14 Thread Yehuda Katz
1. Don't know, should be easy to test. 2. Pipe. 3. I think this depends on which actual proxy module you are using. (There are parameters for controlling the buffer size and when to flush) On Mon, Jan 14, 2019 at 9:51 AM Hemant Chaudhary < hemantdude.chaudh...@gmail.com> wrote: > Hi Team, > > I

Re: [users@httpd] RE: Updating Response url from Apache

2019-01-14 Thread Naveen Nandyala
Thank you Matt for response. We don’t have control on external proxy server its Torbit managed by other team. We have all firewall rules opened and communications between internal and external. Below are request and response we are looking for. Request :: End user access this url in AEM ( ht

[users@httpd] Re: About Using ProxyPass Directive

2019-01-14 Thread Osman Zakir
Adding to previous message: I set up port forwarding on ports 8080 (for HTTP) and 8443 (for HTTPS) for my internal IP address on my router and I also put in my IP address for the DMZ host. Just now when I tried to start httpd as a service (I had to do it as an Administrator because I was gettin

[users@httpd] RE: About Using ProxyPass Directive

2019-01-14 Thread Muggeridge, Matt
Ø ProxyPass "/?q=accesskey" From the ProxyPass documentation, it states: url is a partial URL for the remote server and cannot include a query string. If you must use a query string then presumably you will need the more flexible RewriteRule directive with the [P] flag. Matt. From: Osman Zak

Re: [users@httpd] About Using ProxyPass Directive

2019-01-14 Thread Eric Covener
ProxyPass "/" > "E:/programming/visual_studio_2017/Projects/currency_converter/x64/Release" > The 2nd parameter should be a URL where your backend service is listening for HTTP requests, but you put a path to where you compiled some binaries. Those are not interchangeable. If there's no URL where

Re: [users@httpd] About Using ProxyPass Directive

2019-01-14 Thread Osman Zakir
From: Eric Covener Sent: Tuesday, January 15, 2019 7:00 AM To: users@httpd.apache.org Subject: Re: [users@httpd] About Using ProxyPass Directive ProxyPass "/" "E:/programming/visual_studio_2017/Projects/currency_converter/x64/Release" >The 2nd parameter should be a URL where your backend serv