Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
60 views

Why do web frameworks serve via FastCGI/SCGI, rather than HTTP?

Major web frameworks (such as Django, Pyramid, Rails, etc) are often run as persistent servers, with a separate web server like nginx serving as a frontend. The web server connects via a protocol like ...
4
votes
3answers
2k views

What's the difference between scgi and wsgi?

What's the difference between these two? Which is better/faster/reliable?
3
votes
1answer
870 views

WebSocket and CGI/FastCGI/SCGI protocols

I'm looking for resources about interaction between client side web socket, web server and real application backend that works behind CGI, FastCGI or SCGI protocols. It seems that this is impossible ...
2
votes
2answers
103 views

FastCGI / SCGI pre-fork

I've been trying to implement a web server gateway (for fun and educational purposes) and I have some questions about the core architecture behind FastCGI/SCGI with respect to the pre-fork model. How ...
2
votes
2answers
738 views

HTTP Proxy/FastCGI/SCGI not closing connection when client disconnected - bug or feature?

I'm working on Comet support for CppCMS framework via long XMLHttpRequest polls. In many cases, such request is closed by client before any response from server was given -- for example the page is ...
2
votes
2answers
1k views

FastCGI on port vs. on socket

I was setting up Django on Cherokee today (using SCGI), and I noticed that the Django docs say that you can use either a host/port combination or a socket for communication between the webserver and ...
1
vote
1answer
173 views

SCGI scripting engine servers? (C#, Java, PHP)

I am looking for scripting engines that provide an SCGI server: a server like Apache receives HTTP requests and sends them to the backend scripting engine, the scripting engine parses and process ...
1
vote
1answer
188 views

Problem deploying Django-Mingus with Flup and Cherokee. Strange admin behaviour

I have a django-mingus blog running perfectly fine with the integrated development web server of django. It's installed in a virtualenv. Once deployed using the django app wizard of cherokee 0.99.42 ...
0
votes
1answer
37 views

writing ClientRequest for scgi with node.js

I want to write an scgi version of http.request, which returns an instance of http.ClientRequest. Of course, I'd write the equivalent but for scgi. I'm wondering what I should go about extending or ...