Questions tagged [scgi]

SCGI is a protocol which provides server functionality. It is implemented as a long-running process to avoid the overhead of spawning a separate process for each request.

SCGI(Simple Common Gateway Interface) is intended to replace . Unlike CGI, it responds to requests using a single instance of the server process.

References

20 questions
0
votes
1 answer

Can SCGI handle more than one request at a time?

From my understanding of the SCGI specification, an SCGI server can only handle one request at a time. Is it true that SCGI servers can only handle one request at a time? How do I work around this limitation, so that a web application served using…
Flux
  • 9,805
  • 5
  • 46
  • 92
0
votes
1 answer

nginx .jpg and .jpeg not found in / but are found everywhere else

I'm new to nginx and I like it. I'm putting up a few scgi feeds, and some static content. After creating a home page hierarchy under /home, I went to move it to /. But when I put it there the .jpg and .jpeg images were coming back…
poetnerd
  • 23
  • 3
0
votes
1 answer

Lighttpd: configure mod_scgi to be case insensitive

I have the following lighttpd.conf: server.document-root = "/var/www/root" server.modules = ( "mod_scgi" ) server.port = 80 server.username = "www" server.groupname = "www" mimetype.assign = ( ".htm" => "text/html", ".html" => "text/html", …
lshw
  • 35
  • 1
  • 5
0
votes
2 answers

nginx returning netstring with wrong length?

I installed nginx (nginx version: nginx/1.7.9) via macports on my mac running the latest OSX. I configured a URI to use SCGI: location /server { include /Users/ruipacheco/Projects/Assorted/nginx/conf/scgi_params; scgi_pass…
ruipacheco
  • 15,025
  • 19
  • 82
  • 138
0
votes
1 answer

Nginx Variable + regex inside config

In my /etc/nginx/nginx.conf 1st example: location ~ ^/~(.+?)(/.*)?$ { alias /home/$1/web$2; index index.html index.htm; } It means if I visit httpwebsite/~user1/ it will redirect web folder to /home/user1/web and If I visit…
1
2