Tagged Questions
19
votes
1answer
17k views
multiple django sites with apache & mod_wsgi
I want to host several sites with under the same server which uses Debian 5, say I have site1, site2 and site3, and assume my ip is 155.55.55.1:
site1: 155.55.55.1:80 , script at /opt/django/site1/
...
5
votes
3answers
4k views
Problem of loading mod_wsgi module into apache on Windows 64-bit
I'm trying to install mod_wsgi module followed this instruction. I've downloaded mod_wsgi.so from this source. It seems like apache cannot restart services properly and the page cannot be loaded after ...
5
votes
1answer
352 views
Django mod_wsgi MemoryError
Having a weird issue with MemoryError in my Django project.
Ubuntu 11
Apache2
Nginx
mod_wsgi
python2.7
I have a template tag that is resizing images using PIL and works great on my dev-machine, ...
5
votes
2answers
2k views
Matplotlib and WSGI/mod_python not working on Apache
Everything works as supposed to on the Django development server. In Apache, the django app also works except when matplotlib is used. Here's the error I get:
No module named multiarray.
Exception ...
4
votes
2answers
1k views
If I want to use a pylons app with Apache, should I use mod_wsgi or proxy to paste?
Or should I be using a totally different server?
3
votes
5answers
5k views
Django, apache, mod_wsgi - Error: Premature end of script headers
Apache logs in mode debug:
[Tue Dec 21 11:36:33 2010] [info] [client 1.53.149.114] mod_wsgi (pid=24831, process='mysite', application='mysite.com|'): Loading WSGI script ...
2
votes
1answer
740 views
Problem with Django using Apache2 (mod_wsgi), Occassionally is “unable to import from module” for no apparent reason
I have put my Django web site up to my web server and have it set up using apache2 and mod_wsgi.. everything works fine most of the time but occasionally it will just give the error that it can't ...
0
votes
1answer
209 views
Running CherryPy under mod_wsgi
I am trying to get a CherryPy app running under apache2/mod_wsgi on ubuntu. I am following the tutorial outlined here, and my config is almost identical. When visiting the root of the site, I receive ...
0
votes
1answer
68 views
Apache stops processing requests (mod_wsgi?)
At some point my site, running on Apache2 with mod_wsgi just stops processing requests. The connection to server is maintained and client waits for responce, but it never is returned by apache. The ...
0
votes
1answer
663 views
LimitRequestBody doesn't respond with 413 for large file(25MB)
I put inside my virtual host file:
LimitRequestBody 1024
to limit the upload size. When i upload files of 100kB up to 7MB i get a 413 Response, but when i try a 25MB file I get "The connection was ...