Top "Wsgi" questions

Web Server Gateway Interface (WSGI) is a standard for web applications written in Python.

What are WSGI and CGI in plain English?

Every time I read either WSGI or CGI I cringe. I've tried reading on it before but nothing really has …

python cgi wsgi
Hello World in mod_wsgi

After failing repeatedly in my quest to get my flask application to run on Apache using mod_wsgi I decided …

python apache mod-wsgi wsgi
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 …

python wsgi fastcgi
Serving a request from gunicorn

Trying to setup a server on Rackspace.com. Have done the following things: Installed Centos 6.3 Installed Python 2.7 Installed gunicorn using …

python linux centos wsgi gunicorn
Multiple mod_wsgi apps on one virtual host directing to wrong app

I'm trying to get two (or more) Django applications set up at subdirectories under the same domain, e.g.: http://…

python apache apache2 mod-wsgi wsgi
How can I tell whether my Django application is running on development server or not?

How can I be certain that my application is running on development server or not? I suppose I could check …

python django wsgi
How to solve import errors while trying to deploy Flask using WSGI on Apache2

I am having an issue deploying a flask app on apache2 using wsgi. I have posted the error logs and …

python apache wsgi flask
Python wsgi:ssl-error Can't connect to HTTPS URL because the SSL module is not available

I just migrated from Amazon ec2 instance to DigitalOcean droplet. Everything seems to be working fine until I ran into …

python ssl python-requests wsgi digital-ocean
Where should WSGIPythonPath point in my virtualenv?

I have a folder called python2.7 inside of lib in the virtual environment. After reading half a dozen tutorials, I …

python django mod-wsgi wsgi
How does cgi.FieldStorage store files?

So I've been playing around with raw WSGI, cgi.FieldStorage and file uploads. And I just can't understand how it …

python cgi wsgi