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

2019-01-15 Thread Muggeridge, Matt
Your Q3 has two concepts mixed together. You’re asking if it is sent as a stream or as an unencrypted message. I don’t understand what you’re really asking about it being a ‘stream’ or what is behind your question. You may have to expand on that part of your question if it’s important. Regar

Re: [users@httpd] About Using ProxyPass Directive

2019-01-15 Thread Eric Covener
On Tue, Jan 15, 2019 at 9:47 AM Osman Zakir wrote: > > I still get these warnings when I try run Apache: > " > [Tue Jan 15 19:38:22.300249 2019] [env:warn] [pid 12988:tid 556] AH01506: > PassEnv variable was undefined > [Tue Jan 15 19:38:22.301248 2019] [env:warn] [pid 12988:tid 556] AH01506: >

Re: [users@httpd] About Using ProxyPass Directive

2019-01-15 Thread Osman Zakir
I still get these warnings when I try run Apache: " [Tue Jan 15 19:38:22.300249 2019] [env:warn] [pid 12988:tid 556] AH01506: PassEnv variable was undefined [Tue Jan 15 19:38:22.301248 2019] [env:warn] [pid 12988:tid 556] AH01506: PassEnv variable was undefined " How do I set the PassEnv value

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

2019-01-15 Thread Naveen Nandyala
We were able to achieve this in IIS using below rewrite configuration, was wondering if theres any module that I can use in apache to achieve the same.

Re: [users@httpd] About Using ProxyPass Directive

2019-01-15 Thread Jonathon Koyle
By default, the httpd.conf has the directive Listen 80. If you don't want Apache to listen on 80 you will need to remove/change it. You are allowed to have as many listen directives as you want Apache to bind. ServerName does not usually include a port, and does not specify what IP or port Apach

Re: [users@httpd] About Using ProxyPass Directive

2019-01-15 Thread Osman Zakir
@Eric Covener I got the port forwarding to work and am now able to get my app using my external IP address on port 8443 (but it's not using SSL right now). I still need to actually get Apache to start before I put my app behind the reverse proxy, and port 80 is being

[users@httpd] ThreadsPerChild in apache-2.4.37

2019-01-15 Thread Hemant Chaudhary
Hi All, 1) I am using apache-2.4.37 and found that when I am setting ThreadsPerChild to 5 or 10, it is not creating that number of threads. Still it creates default threads i:e 25 in debug mode (-X) option. Whether this parameter doesn't work in debug mode or any issue in apache-2.4.37 ? 2) I am

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

2019-01-15 Thread Hemant Chaudhary
Hi,, 3) I am using mod_proxy and mod_proxy_http to proxy request to backend server. With http we have stream flow of message. Thanks Hemant On Mon, Jan 14, 2019 at 10:37 PM Yehuda Katz wrote: > 1. Don't know, should be easy to test. > > 2. Pipe. > > 3. I think this depends on which actual proxy

Re: [users@httpd] About Using ProxyPass Directive

2019-01-15 Thread Eric Covener
> > I put in the path to where the executable file that's also the web server > is. > That won't accomplish anything, a URL is required.