The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
122 views

Redmine 2.3, ruby 2.0.0, nginx 1.4.1 with passenger 4.0.2 all HTTP POSTs fail

I'm new to nginx and am attempting to run Redmine 2.3 using ruby 2.0.0, phusion passenger 4.0.2 and nginx 1.4.1. This is compiled from the passenger-install-nginx script on an ARMv5te system in Arch ...
0
votes
1answer
33 views

Communicating directly with an SCGI channel

On my home server I'm trying to write a command line script that communicates with an SCGI (XML-RPC) server (rtorrent). Since it's really the only language that I'm any good at, I'd like to use PHP ...
1
vote
0answers
138 views

FCGI / SCGI: theoretical stuff about multi-processing

I'm about to write a FastCGI / SCGI (independent implementations) server but I don't have much experience with networked and especially delayed-application programming. I got a theoretical problem ...
4
votes
1answer
313 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 ...
0
votes
1answer
84 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 ...
2
votes
2answers
263 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 ...
1
vote
1answer
352 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 ...
6
votes
1answer
2k 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 ...
1
vote
1answer
239 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 ...
2
votes
2answers
1k 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 ...
6
votes
2answers
4k 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 ...
6
votes
3answers
4k views

What's the difference between scgi and wsgi?

What's the difference between these two? Which is better/faster/reliable?