Re: [users@httpd] Fwd: Patches for CVE-2016-8743 (apache 2.4.18)

2017-06-01 Thread Rashmi Srinivasan
Hi Yann, Any update on this will be very helpful. regards, Rashmi On Thu, Jun 1, 2017 at 2:49 PM, Rashmi Srinivasan < rashmisrinivasan2...@gmail.com> wrote: > Hi Yann, > To port the fix for CVE-2016-8743 to 2.2.29, is it ok to port > the changes from

Re: [users@httpd] What is configuration

2017-06-01 Thread Luiz Guilherme Nunes Fernandes
I make another tests, but my solution, i change port: DocumentRoot "/var/www/html/jasmine/" ServerName jasmine ServerName cups ProxyPreserveHost Off ProxyPass / http://localhost:631/ ProxyPassReverse / http://localhost:631/ 2017-06-01 15:41 GMT-03:00 Daniel : >

Re: [users@httpd] Trouble updating PHP version on MAMP on Mac

2017-06-01 Thread Dr James Smith
Looks like you are using php5_module with a PHP7 so file - you should be using: LoadModule php7_module /libphp7.0.so On 01/06/2017 20:26, Roparzh Hemon wrote: I am not on Apple here, and you don't say whether you are using php-fpm or not, but assuming that you are, check the start up

Re: [users@httpd] Trouble updating PHP version on MAMP on Mac

2017-06-01 Thread Roparzh Hemon
>I am not on Apple here, and you don't say whether you are using php-fpm or >not, but assuming that you are, check the start up (sysctl or init.d) file >and be sure that the correct version of PHP is being started. Thank you for your feedback. I have no idea what php-fpm is, and my guess is that

RE: [users@httpd] Building httpd2.4.25 on powerpc-ibm-aix7.1.0.0

2017-06-01 Thread Joseph, Anselm
Thanks for the reply. I decided to run configure with the built APRs as follows: $ CC='gcc' CPP='gcc -E' ./configure --enable-so –enable-dav --prefix=/opt/eai/ci/httpd-2.4.25/apache --with-iconv=/opt/eai/ci/libiconv-1.15/libiconv/lib --with-included-apr --with-included-apr-util

Re: [users@httpd] What is configuration

2017-06-01 Thread Daniel
there is no problem if they have the same ip in common. This procedure is called Named Virtual Hosts. That is, Apache httpd looks at the hostname in the request to know where to deliver the requests, if no match is found it chooses the first virtualhost, hence the importance of defining

Re: [users@httpd] What is configuration

2017-06-01 Thread Luiz Guilherme Nunes Fernandes
Ok tnx my last doubt, if i add this names in dns, cups and jasmine have the same IPadrress. For example cups.mydomain 10.1.1.76 jasmine.mydomain 10.1.1.76 2017-06-01 15:20 GMT-03:00 Daniel : > Servername is to specify the host header, defining different names but > calling

Re: [users@httpd] What is configuration

2017-06-01 Thread Daniel
Servername is to specify the host header, defining different names but calling http://10.1.1.76 won't help apache determine to which virtualhost the request has to go, following the names you used, you need to request http://cups/ or http://jasmine/ to make Apache httpd recognize where requests

Re: [users@httpd] What is configuration

2017-06-01 Thread Luiz Guilherme Nunes Fernandes
Well, i chek in log. When I try to access the first virtualhost it works normally. 10.251.14.140 - - [01/Jun/2017:15:01:35 -0300] "GET / HTTP/1.1" 304 - " http://10.1.1.76/admin; "Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0" 10.251.14.140 - - [01/Jun/2017:15:01:35 -0300]

Re: [users@httpd] What is configuration

2017-06-01 Thread Daniel
Hello, if you define more than one virtualhost you need to distinguish them somehow, so Apache knows where requests will "land". This "somehow" you must use is called ServerName, each virtualhost must have a unique severname. Also if this is Apache httpd 2.2 you will need a directive called

[users@httpd] What is configuration

2017-06-01 Thread Luiz Guilherme Nunes Fernandes
Dears, i need redirect my apache for use cups and i need use Directory /var/www/html/jasmine with another application. What is a configuration correct? in apache show "Not Found" for directory of Jasmine, if i remove proxy pass directory jasmine work. ProxyPreserveHost Off

[users@httpd] Analog log file analyzer for Apache logs

2017-06-01 Thread Rose, John B
Has anyone used these more recent versions (C:Amie) for Apache logs? http://www.c-amie.co.uk/analog/ Comments?

Re: [users@httpd] Trouble updating PHP version on MAMP on Mac

2017-06-01 Thread John Iliffe
I am not on Apple here, and you don't say whether you are using php-fpm or not, but assuming that you are, check the start up (sysctl or init.d) file and be sure that the correct version of PHP is being started. John = On Wednesday 31 May 2017 03:56:45 Roparzh

Re: [users@httpd] Apache 2.2.32 request header parsing and RFC7230 compliance

2017-06-01 Thread Eric Covener
On Mon, May 22, 2017 at 4:34 AM, Joao Costa wrote: > Is this a bug, and is there a chance of fixing it in 2.2.32 ? Not failing for me: $ printf "GET / HTTP/1.1\r\nHost: foo\r\n0:x\r\n\r\n" | nc 0 80 HTTP/1.1 200 OK Date: Thu, 01 Jun 2017 13:08:46 GMT Server:

Re: [users@httpd] Fwd: Patches for CVE-2016-8743 (apache 2.4.18)

2017-06-01 Thread Rashmi Srinivasan
Hi Yann, To port the fix for CVE-2016-8743 to 2.2.29, is it ok to port the changes from http://svn.apache.org/viewvc?view=revision=1777405 Would that suffice? Please advise. regards, Rashmi On Fri, Feb 10, 2017 at 1:30 PM, Rashmi Srinivasan <

Re: Re[2]: [users@httpd] apache in proxy mode introduces extra delay for sockjs in xhr poll mode

2017-06-01 Thread Luca Toscano
Hi Stepan, Have you tried to explicitly set ProxyTimeout? If your environment is a testing one, would it be possible for you to raise the LogLevel to trace8 and send us the logs ( https://httpd.apache.org/docs/2.4/mod/core.html#loglevel) ? I am assuming that you have httpd 2.4, but which version?