Tagged Questions
FastCGI is a protocol for interfacing interactive programs with a web server. FastCGI is a variation on the earlier Common Gateway Interface (CGI); FastCGI's main aim is to reduce the overhead associated with interfacing the web server and CGI programs, allowing a server to handle more web page requests at once.
15
votes
5answers
5k views
How to gracefully restart django running fcgi behind nginx?
I'm running a django instance behind nginx connected using fcgi (by using the manage.py runfcgi command). Since the code is loaded into memory I can't reload new code without killing and restarting ...
8
votes
2answers
277 views
Using FastCGI applications from within a C# app
I'm developing a small webserver in C# as part of a larger project (the nature of the project prevents me from using something like apache nginx, which would be my first choice).
The webserver needs ...
8
votes
1answer
787 views
How do I get killed using Perl FCGI?
I'm having a little problem with nginx and the Perl FCGI module. I have a long operation in my FCGI program that may outlive the server (or the user on the server) on the other end of the Unix socket ...
8
votes
2answers
9k views
how to nginx virtual servers + fcgi for django?
I would like to run several virtual hosts via nginx, each serving a different django app via fcgi. Is this possible? If so, does anyone have good resources on where/how to start? The nginx docs seem ...
6
votes
2answers
3k views
Is there a speed difference between WSGI and FCGI?
From the web I've gleaned that WSGI is a CGI for python web development/frameworks. FCGI seems to be a more generalised gateway for a variety of languages. Don't know the performance difference ...
6
votes
4answers
543 views
Do I have to put DB connection/initialization outside of the FCGI loop to take advantage of FastCGI in Perl?
Let's say I've got some Perl code that increments a column in a specific row of a database each time it's hit, and I'm expecting it to be hit pretty frequently, so I'd like to optimize it with FCGI. ...
5
votes
1answer
612 views
How to configure Perl/FCGI (FastCGI) with IIS 7.5?
I'm trying to get Perl/FastCGI (FCGI) running with IIS 7.5. The version of C:\Windows\System32\inetsrv\iisfcgi.dll is 7.5.7601.17514. Here's my web.config and my Perl script:
D:\MiLu\Dev :: more /t1 ...
4
votes
6answers
2k views
FastCGI for C++
I've found only two FastCGI libraries for C++. There's the "official" one, and fastcgi++. How is either one better than the other? Do any others exist?
4
votes
3answers
2k views
Unhandled Exception in Flup
I am facing the dreaded "Unhandled Exception" raised by Flup. The sad part is its raised at the webserver (lighttpd+flup) level and not at the application level(Django). So no 500 email is raised ...
3
votes
2answers
263 views
Python ctypes MemoryError in fcgi process from PIL library
I'm trying to run Django on shared hosting (Bluehost). I'm using functionality that requires PIL. PIL imports and works from an interactive shell, but in my fcgi process it crashes with a MemoryError ...
3
votes
1answer
203 views
Django admin with FCGI + lighttpd
I'm running a django installation on lighttpd +FCGI.
Everything works fine except the admin.
It seems that the redirects after I post something (i.e. I modify sor create an instance of a model) go ...
3
votes
2answers
920 views
How do I handle and send POST requests in Perl and FastCGI?
Unfortunately, I'm not familiar with Perl, so asking here. Actually I'm using FCGI with Perl.
I need to 1. accept a POST request -> 2. send it via POST to another url -> 3. get results -> 4. return ...
3
votes
3answers
4k views
Lighttpd + PHP + FCGI
I have a problem with Lighttpd, PHP and CGI.
I use OpenSUSE.10.
I have builded lighttpd (version 1.4.23) and php (version 5.3.0).
This is lighttpd build command lines:
./configure ...
2
votes
1answer
89 views
How to design applications for persistent PHP FastCGI processes?
PHP is finally starting to get TRUE FastCGI implementations. (Not to be confused with PHP-FPM or PHP process startup scripts commonly used with Nginx - think node.js for PHP.
How do you design ...
2
votes
3answers
510 views
Hosting Django on a shared FastCGI host
I am trying to set up django shared hosting at iPage.com using FastCGI but I keep running into issue. The CGI script lods in the browser as text instead of executing. Below is the .htaccess and the ...
2
votes
2answers
3k views
Rails 3 and FCGI?
I want to make an app for a friend but he has shared hosting and the only option is fcgi and I can't find any documentation on how to do it. Is there anyways to run rails 3 on FCGI?
2
votes
2answers
209 views
How are data shared between fastCGI processes?
I've written a simple perl script that I'm running via fastCGI on Apache. The application loads a set of XML data files which are used to lookup values based upon the the query parameters of an ...
2
votes
3answers
1k views
Django on Apache with FCGI
Solved: Unfortunately I wasn't able to solve the problem but I started over and followed the Django + FastCGI guide on the "A Small Orange" wiki and everything is working as expected.
I am trying to ...
2
votes
2answers
2k views
Django in Lighttpd + FCGI on Ubuntu - rewrites stop working when I enable a second site
I've got lighttp configured to start and serve django via fastcgi on ubuntu. When I have only a single site enabled (via ubuntu's apache-like conf-available, conf-enabled mechanism), everything runs ...
1
vote
1answer
28 views
passing env variables to fcgi (perl)
I have an apache 2 webserver running with mod_fcgid. CGI scripts are executed by passing some environment variables and then exec'ing a perl program, eg:
index.cgi:
#!/bin/sh
export TEST_VAR=test
...
1
vote
1answer
82 views
How to close TCP connection when invalid user trying to POST large file?
I wrote a simple HTTP responding C++ program using http://www.fastcgi.com library + nginx web-server. It works almost great. But I noticed that fcgi's function
int FCGX_Accept_r(FCGX_Request ...
1
vote
0answers
109 views
Nginx+FCGI: “phtml” suffix not running PHP
I have the following setup on an Ubuntu VPS:
location ~ \.phtml$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index /index.phtml;
fastcgi_param SCRIPT_FILENAME ...
1
vote
1answer
166 views
How to get rvm running inside fcgi?
I had a rails 2.3 application running on apache + fcgi, and I am migrating it to rails 3.1 + rvm (+ apache + fcgi).
I am now blocked at fcgi <-> rvm.
I tried putting #!/usr/local/bin/rvm ...
1
vote
0answers
372 views
apc under php-fpm not caching files
I currently have apc installed and running under php-fpm. The apc info page reflects user cache entries but the file cache reflects 0 files cached. Other similar threads state that if runnning under ...
1
vote
3answers
206 views
Django on lighttpd: redirecting to .fcgi (404)
I'm in the process of deploying my django project to a lighty server. When I'm trying to access the website root, everything is fine, but if I add /admin/ or /blog/ I get:
Page not found (404)
...
1
vote
3answers
63 views
problem with Fastcgi on ubuntu
iam a starter in using apache. i donno even how to setup apache. can some one give me some links to all the steps to setup fastCGI on ubuntu?
1
vote
1answer
144 views
Wanting to run multiple Django setting files under one fcgi instance
At the moment I'm running a Django application that is the same for all of my clients.
Each client has its own subdomain e.g.:
http://client1.myapp.com/
http://client2.myapp.com/
client1 has a ...
1
vote
1answer
224 views
Django runfcgi mode timeout
manage runfcgi host=127.0.0.1 port=8002 maxrequests=200 maxchildren=100 minchildren=4
I started django fcgi in this way. It seems all right in processes monitor. But when I open ...
1
vote
1answer
223 views
django hosting error , about alwaysdata.com
this is my alwaysdata page - http://zjm.alwaysdata.net/:
It is not configured successful ,but when i Visit the http://zjm.alwaysdata.net/mysite/public/
it show my main page :
so what can i do ...
1
vote
3answers
387 views
Get all client headers in FastCGI (C/C++)
currently I am struggeling with a little problem:
I want create FastCGI/CGI binding for the nekoVM. This is done by writing some clue C/C++ code that is loaded by the VM. I want to make the behaviour ...
1
vote
1answer
249 views
IIS + PHP + MySQL: A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306)
I'm running Windows, having installed IIS 7.5, PHP 5.3 (FastCGI). Trying to connect to MySQL and getting an error "A connection attempt failed because the connected party did not properly respond ...
1
vote
0answers
112 views
Auto initialization for a django app on apache/fcgi
We are implementing a web service that is hosted in Dreamhost VS, uses Apache with FCGID running a Django application.
Our key issue is that the initialization of our application is extreamly long ...
1
vote
2answers
154 views
upload analogue with XSendFile?
Is there some way to use something similar to x-sendfile for uploading files, e.g. saving particular stream/parameter from request to file, without putting it wholly into memory?
(In particular, with ...
1
vote
1answer
664 views
Testing FastCGI script in Perl using standalone Perl FastCGI / FCGI web server
I have a FastCGI Perl web app (written using CGI::Fast, but that should not matter), that I'd like to test in FastCGI mode.
What Perl module can I use to run FastCGI application (the module should ...
1
vote
2answers
396 views
Lighttpd server is stopped
I have a Lighttpd server plus mod_fastcgi. And today I had Internal Server Error 500. I've checked my error log and it goes like this:
2010-04-22 22:59:14: (server.c.1464) server stopped by UID = 0 ...
1
vote
1answer
156 views
Spawning multiple C-executable processes with Apache/FastCGI
I've not been successful in finding help with this issue. What I want to do is following: I have some C-based executables that implement the server side logic. There should be one process running this ...
1
vote
1answer
583 views
Django: Gracefully restart nginx + fastcgi sites to reflect code changes?
Common situation: I have a client on my server who may update some of the code in his python project. He can ssh into his shell and pull from his repository and all is fine -- but the code is stored ...
1
vote
4answers
612 views
complicated installation spagetti of latest Rails 2.3.5
the basic and, I guess, more rhetorical question is why RoR installation/maintenance became so F%#$ing complicated?
Some background of the problem:
Platform: Windows XP
Ruby version: 1.8.6
A few ...
1
vote
2answers
2k views
Difficulty getting flup fcgi script to work
I'm building a site for a client using django. It's been hosted on shared hosting and mod_wsgi can't be used. In the old year, I got it working using fcgi, but when I got back, it was broken.
I have ...
1
vote
2answers
346 views
How do I run more than one Django site on a single server using fastcgi?
I'm running Django on a server with a dozen or so virtual hosts set up. The first Django site I've put together works great, but I'm about to set up a second. Do I need to run a second fastcgi ...
1
vote
2answers
1k views
How to setup Trac to run at / with Lighttpd on a subdomain
I have the following config in my lighttpd.conf:
$HTTP["host"] == "trac.domain.tld" {
server.document-root = "/usr/home/daniels/trac/htdocs/"
fastcgi.server = ( "/trac" =>
...
0
votes
1answer
11 views
Django dispatch.fcgi Works From Command Line but gets 500 from Browser
I have a Django app running on a shared server using FCGI. When I run the dispatch.fcgi script from the command line, I see the HTML content of my homepage, as expected. However, when I try to visit ...
0
votes
0answers
59 views
dispatch.fcgi and ruby on rails using rvm
I'm trying to just get a "hello world" application working on my hosting service (Dreamhost) using rvm. I'm using rvm so that I can use Ruby 1.9.2 and Rails 3.1
I recognize there are better hosting ...
0
votes
0answers
6 views
reg fast cgi and cpp clarification
I am developing a sample using c++ which will get request from lighttpd webserver using fcgi protocol and process the request and send the response to client.
I could not able to fetch the query ...
0
votes
0answers
37 views
apache error: mod_fcgid: can't apply process slot for
I have server with Debian 6,Apache 2.2.16,php 5.3.7. Whereon runs two page first.net - many visit user, second.net - much less page visit. When restart apache2,that run both page ok, but after few ...
0
votes
0answers
12 views
upload file to embedded linux system using FCGI and C
I'm looking for an example, for uploading to my embedded linux machine using FCGI and C
Thanks,
Samuel
0
votes
0answers
52 views
How to configure lighttpd bin-path parameter with flup/python
I am running lighttpd 1.4.26 on Ubuntu 10.04 with Flup 1.0.3 dev version.
When setting up mod_fastcgi, I can successfully get lighttpd to communicate with the fcgi process on a local socket if I ...
0
votes
1answer
61 views
Nginx with FastCGI - GETTEXT trouble, works on Apache
I've got problem witch Nginx and php-gettext module. All works without any trouble on apache, but on nginx not. I've got two servers started on my notebook. Apache works on 80 port, and Nginx on 81. ...
0
votes
2answers
128 views
Executing scripts as apache user (www-data) insecure? How does a contemporary setup look like?
My scripts (php, python, etc.) and the scripts of other users on my Linux system are executed by the apache user aka "www-data". Please correct me if I'm wrong, but this might lead to several awkward ...
0
votes
1answer
78 views
fcgi, ssl and django, redirect HTTP to HTTPS
I have a django site setup with lighttpd and ssl working but I can not seem to get a redirect to work from http to https. My setup is very similar to: ...