Re: [users@httpd] virtual host configuration

2015-07-23 Thread ken
On 07/23/2015 03:48 PM, Mathijs Schmittmann wrote: K R schreef op 7/23/2015 om 9:44 PM: Hi, my customer want to configure virtual host for 5 website in one apache environment . do i have to get 5 ip addresses from network team. Can someone please point me on how can i achieve the same No,

Re: [users@httpd] php-fpm and proxy , httpd 2.4.12

2015-07-23 Thread Yehuda Katz
On Thu, Jul 23, 2015 at 3:15 PM, MM finjulh...@gmail.com wrote: You need to choose mod_php or fpm. Don't load both. I personally usually use mod_php. Is it that with mod_php, httpd runs php in process while fpm delegates to separate processes? Correct. - Y

Re: [users@httpd] SSL Session Id lost?

2015-07-23 Thread Yann Ylavic
On Thu, Jul 23, 2015 at 3:50 PM, Alex Soto asot...@gmail.com wrote: It seems that everything is configured correctly since sometimes works. Have you ever found something similar or knows what it can be happening? Do you think that maybe the problem is on client (browser) side? We say that

[users@httpd] Request Entity Too Large

2015-07-23 Thread Cohen, Laurence
Hi everyone, We are suddenly having the following problem on several of our servers, and I have not been able to find a solution on the internet that has resolved it. Our configuration is the following. Apache httpd 2.2.3 running on RHEL5 Tomcat 7, also running on RHEL5 When we try to upload a

[users@httpd] Re: Request Entity Too Large

2015-07-23 Thread Cohen, Laurence
Forgot to mention. The httpd error code is 413. Thanks, Larry Cohen On Thu, Jul 23, 2015 at 5:04 PM, Cohen, Laurence lco...@novetta.com wrote: Hi everyone, We are suddenly having the following problem on several of our servers, and I have not been able to find a solution on the internet

Re: [users@httpd] Apache Performance Question

2015-07-23 Thread Philip Wigg
Hi, There is a limit on the number of concurrent connections that Apache will serve. See if you can find the 'LogLevel' directive in your configuration and then set it to 'info'. Apache will then print warnings in your error log if you're reaching those limits.

[users@httpd] Directory matching when Location should match

2015-07-23 Thread Andreas Ley
Hello! I have a configuration (apache 2.2, soon 2.4) which basically is VirtualHost 10.1.2.3:80 DocumentRoot /var/www Location /server-status SetHandler server-status /Location Directory /var/www/ RewriteEngine On RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} /Directory /VirtualHost (of

Re: [users@httpd] Apache Performance Question

2015-07-23 Thread Rose, John B
In the past on our 2.2 configs we used prefork with mod_php To set our MaxClients we determine an average amount of RAM used by httpd processes by looking at top output, we then divide the (total amount of physical RAM minus enough RAM to run the OS) by the average RAM used by httpd processes.

Re: [users@httpd] Apache 2.4: SSLProtocol directive not taking effect

2015-07-23 Thread Hébergement web ArbreBinaire . com
Hi, You may be hitting bug [1], which has been fixed in latest 2.4.16 and 2.2.31. Not sure anymore that the bug indicated is the one affecting our Apache installation. Seems like the SSLCipherSuite directive is also simply ignored. This is very peculiar, since any and all directives in a

Re: [users@httpd] Fwd: SSI directives not working on page used in ErrorDocument directive

2015-07-23 Thread Yehuda Katz
What mechanism are you using to have SSI work on .html pages? I have no problem getting SSI to work when my page extension is .shtml: This is my very simple test which works perfectly: .htaccess: Options +Includes ErrorDocument 404 /error.shtml error.shtml: Last modified: !--#echo

Re: [users@httpd] Fwd: SSI directives not working on page used in ErrorDocument directive

2015-07-23 Thread , ,
I have Apache configured to parse all html files for SSI directives. I did try re-naming it to .shtml just to make sure though and it still does not fire the SSI directives, I even removed all but the example you have there but it still doesn't function. Still works when hitting directly, but not

[users@httpd] virtual host configuration

2015-07-23 Thread K R
Hi, my customer want to configure virtual host for 5 website in one apache environment . do i have to get 5 ip addresses from network team. Can someone please point me on how can i achieve the same Thanks in advance

Re: [users@httpd] virtual host configuration

2015-07-23 Thread Mathijs Schmittmann
K R schreef op 7/23/2015 om 9:44 PM: Hi, my customer want to configure virtual host for 5 website in one apache environment . do i have to get 5 ip addresses from network team. Can someone please point me on how can i achieve the same No, you should create 5 virtualhosts in your

[users@httpd] Fwd: SSI directives not working on page used in ErrorDocument directive

2015-07-23 Thread eigenbrais1
Forgot to include my question, Is there some additional step you have to take to get SSI to function on an ErrorDocument page? Thanks - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail:

Re: [users@httpd] Request Entity Too Large

2015-07-23 Thread Cohen, Laurence
Ok, thank you. On Thu, Jul 23, 2015 at 5:18 PM, Yehuda Katz yeh...@ymkatz.net wrote: The first thing to check is if it is an HTTPD error or a Tomcat error. You haven't explicitly said this, but I am guessing you are using HTTPD as a reverse proxy. Check the Tomcat logs first. If the 413

Re: [users@httpd] Request Entity Too Large

2015-07-23 Thread Yehuda Katz
The first thing to check is if it is an HTTPD error or a Tomcat error. You haven't explicitly said this, but I am guessing you are using HTTPD as a reverse proxy. Check the Tomcat logs first. If the 413 shows up there, it is a problem with Tomcat and not with HTTPD. Check the HTTPD error log also

Re: [users@httpd] Directory matching when Location should match

2015-07-23 Thread Eric Covener
On Thu, Jul 23, 2015 at 9:45 AM, Andreas Ley andreas@kit.edu wrote: However, also requests for /server-status get redirected :( Documentation says Enclose a group of directives that apply only to the named file-system directory, sub-directories, and their contents. Cleary /server-status is

[users@httpd] SSL Session Id lost?

2015-07-23 Thread Alex Soto
Hello I have seen a strange behaviour in Apache HTTPD (2.4) and TomEE (in fact it is a Tomcat (7.0.61) so it is exactly the same for Tomcat) when I configure Apache server with SSL and mod_jk. I have been asking in the Tomcat/mod_jk mailing list and after several discussion it seems that there is

Re: [users@httpd] Apache Performance Question

2015-07-23 Thread Dino B.
Thank you for the reply John. I'm using Apache 2.2 and I'm novice, would you mind providing some detailed steps to figure out what the issue is? If my initial explanation is vague, what other info do you need if any? Much appreciated On Jul 23, 2015 6:30 AM, Rose, John B jbr...@utk.edu wrote:

Re: [users@httpd] php-fpm and proxy , httpd 2.4.12

2015-07-23 Thread MM
On 22 July 2015 at 20:49, Yehuda Katz yeh...@ymkatz.net wrote: Do you need this configuration to be portable to different systems with different modules available? No If not, remove all the IfModule directives and only include the configuration that you really want to use. All right...

[users@httpd] SSI directives not working on page used in ErrorDocument directive

2015-07-23 Thread eigenbrais1
Firstly SSI directives are working on my server. If i access the file directly everything functions as expected. Working example file path explanation - 1. Enter in browser: http://example.com/apps/pagenotfound/index.html 2. This is a symlink to: /temp/comp/apps/applayer/index.html The issue

Re: [users@httpd] Re: Http trailers in chunked requests

2015-07-23 Thread Yann Ylavic
On Thu, Jul 23, 2015 at 11:03 AM, Sachin Shetty sachin.she...@gmail.com wrote: From the change list, I found that you added support for MergeTrailers in 2.4.11 - any idea on how I could make it work? I just need apache to let the trailers pass through to the upstream haproxy, I am not

[users@httpd] Re: Http trailers in chunked requests

2015-07-23 Thread Sachin Shetty
Hi Eric, Sorry to be bugging you on this one, I grepped through the source and I see some solid references to trailer processing. From the change list, I found that you added support for MergeTrailers in 2.4.11 - any idea on how I could make it work? I just need apache to let the trailers pass