Tagged Questions

mod-wsgi is a python WSGI adapter module for Apache.

learn more… | top users | synonyms

27
votes
4answers
12k views

In production, Apache + mod_wsgi or Nginx + mod_wsgi?

What to use for a medium to large python WSGI application, Apache + mod_wsgi or Nginx + mod_wsgi? Which combination will need more memory and CPU time? Which one is faster? Which is known for being ...
18
votes
5answers
8k views

Django persistent database connection

I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced with problem that the bottleneck ...
15
votes
5answers
2k views

Static files in Flask - robot.txt, sitemap.xml (mod_wsgi)

Is there any clever solution to store static files in Flask's application root directory. robots.txt and sitemap.xml are expected to be found in /, so my idea was to create routes for them: ...
12
votes
1answer
180 views

Allowing only single active session per user in Django app

I want to restrict logged-in users to only have one active session, i.e. if the user logs in with a new sessionid, the old session should be terminated. I found a lot of help on SO already: here and ...
12
votes
8answers
2k views

Django memory usage going up with every request

I moved my first Django project from DjangoEurope to Webfaction, and that started an issue looking like a memory leak. With every single request memory usage of the server process goes up about 500kb. ...
11
votes
1answer
3k views

Deploying Django (fastcgi, apache mod_wsgi, uwsgi, gunicorn)

Can someone explain the difference between apache mod_wsgi in daemon mode and django fastcgi in threaded mode. They both use threads for concurrency I think. Supposing that I'm using nginx as front ...
11
votes
3answers
937 views

Speeding Up the First Page Load in django

When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect. Unfortunately the first page served by each apache instance is quite slow while it ...
10
votes
5answers
2k views

Why is mod_wsgi not able to write data? IOError: failed to write data

What could be causing this error: $ sudo tail -n 100 /var/log/apache2/error.log' [Wed Dec 29 15:20:03 2010] [error] [client 220.181.108.181] mod_wsgi (pid=20343): Exception occurred processing ...
9
votes
2answers
755 views

multiple django projects, mod_wsgi, single domain

I have two distinct Django "projects", which I want to run on a single domain using mod_wsgi. With mod_python, I believe there was a way to do this, where certain url paths would be mapped to one ...
9
votes
4answers
3k views

Django Deployment: Cutting Apache's Overhead

I have a small VPS server that has a Nginx front end that serves up static media files and passes Django requests back to an Apache 2.2 prefork MPM server running mod_wsgi. With one (very) small site ...
9
votes
2answers
4k views

Python POST data using mod_wsgi

This must be a very simple question, but I don't seem to be able to figure out. I'm using apache + mod_wsgi to host my python application, and I'd like to get the post content submitted in one of the ...
8
votes
3answers
342 views

Looking for a lightweight Python web framework with minimal configuration

I realise that web application frameworks are well documented, yet having tried 2 Python frameworks and found that are neither are suitable for my task, I hope you'll understand the need for this ...
8
votes
1answer
217 views

openID in wsgi with Python 3

I have never done authentication stuff before, but would like to be able to track and authenticate users via openID. I saw a couple modules that allow for openID authentication with WSGI, but all are ...
8
votes
4answers
874 views

Difference between socket and websocket?

I'm building web app that needs to communicate with another application using socket connections. This is new territory for me, so want to be sure that sockets are different than websockets. It seems ...
8
votes
3answers
3k views

Converting from mod_python to mod_wsgi

My website is written in Python and currently runs under mod_python with Apache. Lately I've had to put in a few ugly hacks that make me think it might be worth converting the site to mod_wsgi. But ...
7
votes
3answers
587 views

mod_wsgi, mod_python, or just cgi?

I've been playing around with my own webserver (Apache+Ubuntu) and python. From what I've seen there are 3(?) main ways of doing this: Apache configured to handle .py as cgi Apache configured to use ...
7
votes
2answers
651 views

Django localeURL when WSGIScriptAlias is /PREFIX

Good morning everyone, Introduction I Got a question about localeURL usage. Everything works great for me with url like this : http://www.mysite.com/ If I type http://www.mysite.com/ in adress ...
7
votes
1answer
2k views

Trying to get django app to work with mod_wsgi on CentOS 5

I'm running CentOS 5, and am trying to get a django application working with mod_wsgi. I'm using .wsgi settings I got working on Ubuntu. I'm also using an alternate installation of python ...
7
votes
3answers
615 views

It is said best way to deploy django is using wsgi, I am wondering why?

We are deploying django application, I found in the documentation that it is recommended to use WSGI appoach for doing that. Before deploying I wanted to know, why it is recommended over other two ...
7
votes
1answer
2k views

Django Apache Redirect Problem

I'm configuring my Django project to run on Apache using mod_wsgi. I am attempting to run Django below the directory 'cflow' on apache, but am running into problem with redirects. My apache conf ...
6
votes
1answer
88 views

running subprocess.Popen under apache+mod_wsgi is always returning an error with a returncode of -6

I'm hoping someone's seen this - I'm running django-compressor, taking advantage of the lessc setup to render/compress the less into CSS on the file. It works perfectly when invoked from the ...
6
votes
2answers
532 views

Django + Apache + Windows WSGIDaemonProcess Alternative

After setting up a django site and running on the dev server, I have finally gotten around to figuring out deploying it in a production environment using the recommended mod_wsgi/apache22. I am ...
6
votes
1answer
269 views

Could somebody give me a high-level technical overview of WSGI details behind the scenes vs other web interface approaces with Python?

Firstly: I understand what WSGI is and how to use it I understand what "other" methods (Apache mod-python, fcgi, et al) are, and how to use them I understand their practical differences What I ...
6
votes
3answers
485 views

WSGI/Django: pass username back to Apache for access log

My Django app, deployed in mod_wsgi under Apache using Django's standard WSGIHandler, authenticates users via form login on the Django side. So to Apache, the user is anonymous. This makes the Apache ...
6
votes
2answers
6k views

Unescape Python Strings From HTTP

I've got a string from an HTTP header, but it's been escaped.. what function can I use to unescape it? myemail%40gmail.com -> myemail@gmail.com Would urllib.unquote() be the way to go?
5
votes
1answer
101 views

500 Error without anything in the apache logs

I am currently developing an application based on flask. It runs fine spawning the server manually using app.run(). I've tried to run it through mod_wsgi now. Strangely, I get a 500 error, and nothing ...
5
votes
1answer
126 views

How to use SSL with Django app (deployed using mod_wsgi and virtualenv)

Disclaimer: I don't really know what I'm doing, so I may have phrased things wrong. I've also never asked/answered a question on here before! I have a Django app running on Apache that I deployed ...
5
votes
1answer
94 views

mod_wsgi python can't import from standard library

I have created two python environments with virtualenv: /usr/local/pythonenv/BASELINE and /usr/local/pythonenv/django1. Both were created with --no-site-packages. I installed django to the django1 ...
5
votes
2answers
587 views

See anything wrong with my attempt to get Flask running? (mod_wsgi + virtualenv)

I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I tried to get it ...
5
votes
2answers
704 views

Django virtualenv deployment configuration

I recently start to use virtualenvwrapper and created mkdir ~/.virtualenvs mkvirtualenv example.com Virtualenvwarpper automatical create a virtualenv named example.com under ~/.virtualenv so this ...
5
votes
2answers
827 views

Tracking system and real time stats analysis in Python

This question is related to an older question: http://stackoverflow.com/questions/2019096/mysql-tracking-system. In short: I have to implement a tracking system that will have high loads using Python. ...
5
votes
5answers
326 views

Is there a better way to serve the results of an expensive, blocking python process over HTTP?

We have a web service which serves small, arbitrary segments of a fixed inventory of larger MP3 files. The MP3 files are generated on-the-fly by a python application. The model is, make a GET request ...
5
votes
3answers
2k views

How to Disable Django / mod_WSGI Page Caching

I have Django running in Apache via mod_wsgi. I believe Django is caching my pages server-side, which is causing some of the functionality to not work correctly. I have a countdown timer that works ...
5
votes
1answer
6k 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 155.55.55.1:80 for my site1 , script resides at ...
5
votes
4answers
4k views

Running a Django site under mod_wsgi

I am trying to run my Django sites with mod_wsgi instead of mod_python (RHEL 5). I tried this with all my sites, but get the same problem. I configured it the standard way everyone recommends, but ...
4
votes
1answer
95 views

Apache + mod_wsgi interaction

Before posting this, I have read quite a few resources online, including the mod_wsgi wiki, but I am confused about how exactly Apache processes/threads interact with mod_wsgi. This is my current ...
4
votes
4answers
173 views

Deploying Django on an apache server

OK, first off I am new to web development. So be gentle. AND thanks in advance. I am developing on windows env. and deploying on a linux server w/ Python 2.6.2 installed. Running apache2.2 as Virtual ...
4
votes
2answers
50 views

Memory model for apache/modwsgi application in python?

In a regular application (like on Windows), when objects/variables are created on a global level it is available to the entire program during the entire duration the program is running. In a web ...
4
votes
4answers
353 views

Characters turning up in POST data

I'm running a high traffic ssl website with apache/mod_wsgi/python. Very occasionally (around 10x in 3 months) I've seen some extra garbage characters in post data. Usually it's been in the form of a ...
4
votes
2answers
399 views

“DLL load failed” when using mercurial on trac

My mercurial repository works correctly in trac when I use the tracd server. However, when I use apache, I get the following warning at the top of all trac pages: Warning: Can't synchronize with ...
4
votes
1answer
275 views

Low Apache/mod_wsgi throughput

I have a trivial WSGI app running on pesto, mod_wsgi and Apache: def viewData(request): return Response("aaaaaaaaaa" * 120000) # return 1,2MB of data On my test machine, I get about 100kb/s of ...
4
votes
2answers
835 views

Load module into apache + mod-wsgi

I am using Apache + mod-wsgi. In my httpd.conf, I am having the following additional lines at the end of file. LoadModule wsgi_module modules/mod_wsgi-win32-ap22py27-3.3.so WSGIScriptAlias / ...
4
votes
2answers
248 views

Uniqueness of global Python objects void in sub-interpreters?

I have a question about inner-workings of Python sub-interpreter initialization (from Python/C API) and Python id() function. More precisely, about handling of global module objects in a WSGI Python ...
4
votes
4answers
282 views

Serving static files with logic in django (keeping a downloadcount)

I have a site which enables the user to download certain files. However I want to keep a download count for each file so going the usual way by putting the static files on a different subdomain and ...
4
votes
2answers
1k views

Why do no Python DLLs built with MSVC load with mod_wsgi?

I recently updated from Python 2.5 to 2.7 (I tried 2.6 during my hassles) and while everything works fine from the command line or in the Django runserver, mod_wsgi cannot load any module that ...
4
votes
5answers
5k views

ImportError: No module named django.core.handlers.wsgi in install django mod_wsgi config on apache

I tried to install django on my apache on mod_wsgi , I have this error : ImportError: No module named django.core.handlers.wsgi, I v read, may be it's some user problem... On console ssh, with ...
4
votes
3answers
155 views

Problem setting up django on Apache

This is probably really simple. But I guess I'm too new to WSGI and Django to get it on my own. I have a brand new shiny Django project on a Ubuntu virtual machine hosted in /var/www/mysite. The ...
4
votes
1answer
1k views

what is fastest as a django production server : twisted.web2 vs. apache mod_wsgi

i want to deploy my django project, what is best (on performance) of these 2 deployment methodologies: Django-On-Twisted apache mod_wsgi i knew that mod_wsgi was recommended by django developers ...
4
votes
1answer
124 views

How can I prevent a mod_wsgi django application from repeated reloads?

My mod_wsgi django application seems to keep getting reloaded for the first several requests that the client makes. This is killing my performance After enough requests it seems to settle down, and ...
4
votes
4answers
3k views

django+mod_wsgi on virtualenv not working

I've just finished setting up a django app on virtualenv, deployment went smoothly using a fabric script, but now the .wsgi is not working, I've tried every variation on the internet but no luck. My ...

1 2 3 4 5 12