Tagged Questions
The flup tag has no wiki summary.
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 ...
2
votes
1answer
262 views
Recommended way to setup Django Fast CGI configuration with multiple domains
I'm creating a Django project that will be used by multiple domains, and the functionality will be slightly different depending on the domain. I'm looking for advice on the proper way to set this up. ...
2
votes
2answers
1k views
nginx with mod_wsgi
I generally run web apps behind nginx with FastCGI. I wanted to experiment with mod_wsgi, however it seems quite out of date. The author mentions that it worked on version 0.5.34, however I'm ...
2
votes
4answers
178 views
Best continuously updated resource about python web “plumbing”
I'm a programmer in Python who works on web-applications. I know a fair bit about the application level. But not so much about the underlying "plumbing" which I find myself having to configure or ...
1
vote
2answers
55 views
python 2.7 import flup error
I'm using djangoflup+fastgic+ngix. It works good.
Now I planned to upgrade from python 2.6.6 to 2.7.2 and met a problem to import flup in python 2.7.
Python 2.7.2 (Red Hat 4.1.2-50)
>>> ...
1
vote
0answers
108 views
FastCGI/Python thread/timing issue?
I'm using the Pyramid framework on a shared server on which mod_wsgi isn't supported. Once I deployed the project, I started getting 500 errors with no really helpful error messages:
[Thu Sep 22 ...
1
vote
4answers
183 views
python web app in prod
I am considering to use python serving json based web services, my priorities are, in order:
maintainability
easy of coding
high availability
performance
Apache->AJP->Flup->Python seems ok to me, ...
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
1answer
288 views
Defining PYTHONPATH for http requests on a shared server
I'm installing Django on Bluehost and one of the steps to install it was to install flup on their server. I did so and everything works great when I'm logged in via the SSH. However when I actually ...
1
vote
2answers
439 views
flup/fastcgi cpu usage under no-load conditions
I'm running Django as threaded fastcgi via flup, served by lighttpd, communicating via sockets.
What is the expected CPU usage for each fastcgi thread under no load? On startup, each thread runs at ...
1
vote
1answer
608 views
Multiple installs of Django - How to configure transparent multiplex through the webserver (Lighttpd)?
This question flows from the answer to:How does one set up multiple accounts with separate databases for Django on one server?
I haven't seen anything like this on Google or elsewhere (perhaps I have ...
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
0answers
146 views
Python 3.2 Nginx FCGI — not working
I need a very simple setup
Python 3.2
CherryPy behind Nginx
FastCGI
The problem is that I can't get these pieces to work together. First, i need to install Flup -- but the Flup on PyPI tells that ...
0
votes
0answers
177 views
why django runfcgi prefork constantly restarts children?
I use django in fastcgi prefork mode with command:
./manage.py runfcgi workdir=/home/ruauto/project pidfile=/tmp/ruauto.pid
socket=/tmp/ruauto.sock umask=000 daemonize=true
...
0
votes
1answer
248 views
Switch between FCGI and CGI with Python and Flup
I'm currently moving all my Python CGI scripts to WSGI standard using Flup (http://trac.saddi.com/flup), I created a dispatch.fcgi file calling and using Flup as described in the documentation:
from ...
0
votes
1answer
103 views
If I have an fcgi server running and visit it with a browser, what should happen?
I have the following setup - and don't get any response when I visit the server in a browser.
Should I expect some? Here's the test setup, using python & flup.
#test.py
def myapp(environ, ...
0
votes
2answers
566 views
Lighttpd + fastcgi + django: truncated response sent to client due to unexpected EOF
I'm trying to get my Django based webapp into a working deployment configuration, and after spending a bunch of time trying to get it working under lighttpd / fastcgi, can't get past this problem. ...
0
votes
2answers
1k views
FastCgi crashes — Want to catch all exceptions but how?
I have a django app running on apache with fastcgi (uses Flup's WSGIServer).
This gets setup via dispatch.fcgi, concatenated below:
#!/usr/bin/python
import sys, os
sys.path.insert(0, ...
0
votes
1answer
711 views
How to make a singleton class with Python Flup fastcgi server?
I use flup as fastcgi server for Django.
Please explain to me how can I use singleton?
I'm not sure I understand threading models for Flup well.