Hi all,
I deployed a Rails application on a Windows Server 2003 machine as
follows:
+ I created two instances of Mongrel at ports 4001, 4002 to serve the
application
+ I set up an Apache instance at port 8080 for balancing load for the
two Mongrels => So I can access my website at URL http://mywebsite:8080/
+ I want to allow users access my website without typing port 8080 in
the URL. However, the server already runs IIS for several other
web-sites at default port 80. Therefore, I used ISAPI Rewrite to
forward
requests from IIS (at port 80) to the Apache (and therefore towards
the
Mongrels) => I can access the website at URL http://mywebsite/
(To do these steps, I followed the guide in book Deploying Rails
Application - Pragmatic Bookshelf)
Everything seems to work fine until I find out the following problem:
In my application, the user register form page allows user to upload
his/her avatar. But whenever the file size is bigger than ~30KB, the
browser keeps waiting for response from the server until getting
timeout
error.
This error also occurs in any submitting form with a little big posted
data.
* Looking at the Apache error log file, I got the following error: