[Mono-aspnet-list] How do i get concurrent request with fastcgi?
acidzombie24
acidzombie24 at gmail.com
Sun Oct 23 05:16:04 EDT 2011
I have nginx setup using mono's fastcgi server (fastcgi-mono-server2.exe) on
debian linux.
Below is a sample of my config file. I modified the page to sleep for
5seconds and opened up two tabs and visited the page. The 2nd took 10seconds
to load (the first waits for 5seconds, loaded while i was looking at the 2nd
page which then loaded 5seconds later)
How do i get concurrent request on the same website?
Note: I installed all of this through apt-get. Mono version 2.6.7,
fastcgi-mono-server2 is 2.6.5.0
server {
server_name box.com;
root /var/www/WebApplication1/WebApplication1;
index Default.aspx default.aspx;
location ~ \.(aspx|asmx|ashx|asax|ascx|soap|rem|axd|cs|config|dll)$ {
fastcgi_pass unix:/srv/mono/monoserve.pid;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
--
View this message in context: http://mono.1490590.n4.nabble.com/How-do-i-get-concurrent-request-with-fastcgi-tp3929918p3929918.html
Sent from the Mono - ASP.NET mailing list archive at Nabble.com.
More information about the Mono-aspnet-list
mailing list