[us...@httpd] Server affinity instead of session affinity

2010-11-22 Thread Andrew Hole
Hi guys! There is any available configuration to define server affinity instead of session affinity? Our architecture setup is based on multiple JVMs (tomcat) instances in each server (machine). The goal is to send all requests (within a session) from a client browser to the same machine. Is it po

[us...@httpd] MPM - connection

2010-01-14 Thread Andrew Hole
Hi! I was reading an interesting document http://httpd.apache.org/docs/2.0/misc/perf-tuning.html about MPM and I would like to clarify a doubt regarding the concept of connection: * The worker MPM uses multiple child processes with many threads each. Each thread handles one connection at a ti

[us...@httpd] Case sensitive URLs

2009-09-10 Thread Andrew Hole
Hi guys! How can I ensure case sensitive URLs? I've test.html at DocumentRoot. I want a "File not found" error when I invoke http://host/TEST.html. Thanks a lot A.

Re: [us...@httpd] rewriterule help

2009-09-02 Thread Andrew Hole
It works. However, i'm getting a popup with file save option and I would like to see the page on Browser. Thanks a lot On Wed, Sep 2, 2009 at 11:41 AM, Krist van Besien wrote: > On Wed, Sep 2, 2009 at 12:02 PM, Andrew Hole > wrote: > > Hi guys! > > > > The followin

[us...@httpd] rewriterule help

2009-09-02 Thread Andrew Hole
Hi guys! The following directive doesn't take into consideration the filename in URL: RewriteCond %{DOCUMENT_ROOT}/bin/core/%1 -f In this request the REQUEST_FILENAME has the value: /bin/adt/file.swf but I just want the filename (file.swf). How can I do that? Thanks a lot RewriteCond %{R

Re: [us...@httpd] Handling 404 errors

2009-08-26 Thread Andrew Hole
Your solutions looks very useful, but i'm afraid about impact on server performance. Do you have any idea about the impact on performance? Thanks a lot On Wed, Aug 26, 2009 at 2:59 PM, Tom Evans wrote: > On Wed, 2009-08-26 at 12:23 +0100, Andrew Hole wrote: > > Hi guys! > &

[us...@httpd] Handling 404 errors

2009-08-26 Thread Andrew Hole
Hi guys! Actually our web application has a retry mechanism based on http status code returned to client. Just an example: - An http request is made to http://web/software_A_folder/file.swf - if the file doesn't exist (http 404) on software_A_folder, the request is made in core folder: http://web/

Re: [us...@httpd] Apache logs

2009-08-21 Thread Andrew Hole
eted?”)* > > > > I have you read the pages at http://httpd.apache.org/ regarding the log > files? > > > > > > *Ps. Please nobody moan about me “reverse posting”, I blame my outlook > client!* > > > -- > > *From:* A

[us...@httpd] Apache logs

2009-08-21 Thread Andrew Hole
Hi guys? Apache logs are written when the request is completed (when browser received the response)? Thanks

[us...@httpd] MPM

2009-03-26 Thread Andrew Hole
By default the following instructions are commented: # Server-pool management (MPM specific) #Include conf/extra/httpd-mpm.conf In this case MPM is enabled ? Which are the default values? By the way: The number of active workers on Apache is exactly the same number of active threads in Tomcat?

[us...@httpd] DirectoryIndex

2009-03-26 Thread Andrew Hole
Hi guys! There are two files in DocumentRoot: index.php and index2.php The following directive is configured in httpd.conf DirectoryIndex index.php There is the following instruction inside index.php : window.location =localHost+"/index2.php?idLang=1"; When I invoke the URL on browser

[us...@httpd] VirtualHost doesn't work

2009-03-25 Thread Andrew Hole
Hello, We’ve been facing a problem with apache + ssl configuration. This is our virtual host configuration: NameVirtualHost 10.202.6.132:80 NameVirtualHost 10.202.6.132:443 # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHo

Re: [us...@httpd] Apache processes

2009-03-11 Thread Andrew Hole
rew, > > You may have not set those, but apache ships with pre-set directives. Open > your config files, and see what those directives are set to. > > Idle workers are processes which are not responding to any HTTP request at > the moment. > > Frank. > > Andrew Hole wrote

[us...@httpd] mod_proxy_balancer and svchost.exe

2009-03-11 Thread Andrew Hole
Hi guys! Everytime I load mod_proxy_balancer LoadModule proxy_balancer_module modules/mod_proxy_balancer.so the svchost.exe process goes to 100% of CPU usage...and remaining always at 100%... Why?? Thanks!

Re: [us...@httpd] Apache processes

2009-03-11 Thread Andrew Hole
34 PM, Frank Gingras wrote: > Andrew, > > See the StartServers / MinSpareServers directives. > > Frank. > > > Andrew Hole wrote: > >> Hi! >> >> By default in version 2.2 how many child processes are created at apache >

[us...@httpd] Apache processes

2009-03-11 Thread Andrew Hole
Hi! By default in version 2.2 how many child processes are created at apache startup? When is created another one? Thanks

[us...@httpd] [HTTP] Random errors

2009-02-16 Thread Andrew Hole
Hi guys! We are getting randomly a lot of different errors when we try to acess to our website. Sometimes everything works fine and sometimes it doesn't. http 400 - bad request http 504 - gateway time out sometimes appears on browser the following message: "Your browser sent a request that this

Re: [us...@httpd] RewriteRule

2008-12-22 Thread Andrew Hole
With P flag i get 404 error code. On Mon, Dec 22, 2008 at 1:00 PM, Bob Ionescu wrote: > 2008/12/22 Andrew Hole : > > I'm trying to setup a RewriteRule to redirect requests to a new different > > server , but I want to keep the original URL on address bar. > > How ca

[us...@httpd] RewriteRule

2008-12-22 Thread Andrew Hole
Hi Guys! I'm trying to setup a RewriteRule to redirect requests to a new different server , but I want to keep the original URL on address bar. How can I do that? RewriteEngine on RewriteLog /var/log/httpd/rewrite.log RewriteLogLevel 9 RewriteCond %{QUERY_STRING} msg=online Re