uWSGI is a fast, self-healing and developer/sysadmin-friendly application container server coded in pure C.

learn more… | top users | synonyms

0
votes
1answer
28 views

How to track down a Python/Django/uwsgi/nginx timeout

I've got the following setup... nginx listens on public port 80 and proxies requests to localhost:10000 uwsgi running django site 1 listens on localhost:10000 and generates some webpages. It also ...
0
votes
1answer
8 views

How to read uwsgi stats output

I'm on this page http://uwsgi-docs.readthedocs.org/en/latest/StatsServer.html and using uwsgitop but I have no idea how to interpret the output. The docs aren't giving too much away too. So how would ...
0
votes
1answer
18 views

Logging not working when running pyramid app under uWSGI in emperor mode

First, a little background. I'm running an app under uWSGI in emperor mode. The uWSGI command line: uwsgi --master --emperor /etc/uwsgi --die-on-term --uid uwsgi --gid uwsgi The INI file for my app ...
0
votes
2answers
34 views

502 Bad Gateway on a single django admin page

I am facing a 502 Bad Gateway error on a single admin page: http://Domain.com/admin/sitecategory/add/ Although all other admin pages are working fine. I checked django logs, no errors. I ran the ...
1
vote
1answer
29 views

Python Flask 0.10: fix exception being thrown

Flask introduced the following change in 0.10: Flask will now raise an error if you attempt to register a new function on an already used endpoint. I've used the following code on my home page: # ...
7
votes
1answer
58 views

uWSGI works as process but not as daemon

For my current flask deployment, I had to set up a uwsgi server. This is how I have created the uwsgi daemon: sudo vim /etc/init/uwsgi.conf # file: /etc/init/uwsgi.conf description "uWSGI server" ...
4
votes
4answers
301 views

Flask Login: TypeError: decoding Unicode is not supported

I am running flask, pymongo and flask-login as a stack. My flask app is running fine locally, but once I deploy it with uwsgi on nginx, I get a strange unicode error from flask_login extension. In ...
0
votes
1answer
13 views

Difference between workers and processes in uwsgi

I am trying to be careful and understand every setting in my nginx configuration. I have seen a configuration example that has something like: workers = 8 processes = 10 But the uWSGI docs do not ...
1
vote
1answer
46 views

Configuring Nginx server to python flask appliaction

i am new to configuring server. And i want to configure my Amazon-EC2 instance. I configured it according to this document. http://www.soundrenalin.com/about However when i click the url, 502 Bad ...
0
votes
0answers
19 views

uwsgi: find: `/etc/uwsgi/s-enabled': No such file or directory

I am trying to start uwsgi for the first time and I am getting an error: sudo service uwsgi start --status-all * Starting app server(s) uwsgi dirname: invalid option -- '-' Try `dirname --help' for ...
0
votes
1answer
32 views

Failed to pip install uwsgi in virtualenv

Enviroment: CentOS6.4, python2.6 I created a virtualenv (envflask) and activated it, then pip install flask, everything was ok! But after creating another virtualenv (envuwsgi) and activating it, I ...
0
votes
0answers
37 views

using uwsgi --emperor cannot create sock file

Here is my nginx config upstream app { server unix:///tmp/rate.sock; } and my uwsgi config [uwsgi] chdir = /home/ubuntu/dev/rate/rate module = docrate.wsgi home = ...
1
vote
2answers
81 views

UnboundExecutionError from SQLAlchemy in Cherrypy project using Nginx with uWsgi

I am currently using SQLAlchemy as ORM in my Cherrypy project. The error that I have does not occur while I am on my cherrypy enbedded webserver, but ONLY from my Nginx deployment. On Debian Wheezy ...
1
vote
2answers
33 views

In-memory python card game / no database

I want to run a python card game using uwsgi/nginx on the server. It is a pain to learn uwsgi on the internet, hence my question here: How can I run a python app on the server and read/update my ...
0
votes
1answer
15 views

How to have node and django running under one SSL server?

is there a way to solve this: there is a domain example.com, on port 80 it redirects to 443 so it's always SSL connection and it passes to uwsgi via nginx. Now sockets run via a node connection on ...
0
votes
1answer
53 views

Nginx serve static file and got 403 forbidden

Just want to help somebody out. yes ,you just want to serve static file using nginx, and you got everything right in nginx.conf: location /static { autoindex on; #root /root/boxes/; ...
5
votes
3answers
140 views

gevent-socketio nginx uwsgi not working together on development server

I am running a django project that uses gevent-socketio. For some reason on my development server, all my websockets requests are returning a 101 pending message at which socketio will start cycling ...
0
votes
2answers
113 views

uWSGI error: "Error opening file for reading: Permission denied'

I am experiencing the exact same error described here: uWSGI Server log…permission denied to read file...which file? uWSGI keeps throwing me "Error opening file for reading: Permission denied" in ...
1
vote
1answer
50 views

Unable to run 2 different flask apps on same server

Here is my nginx config server { listen 80; server_name site.com; location / { include uwsgi_params; uwsgi_pass unix:/tmp/uwsgi.sock; uwsgi_param ...
0
votes
1answer
51 views

Django and uwsgi not playing nicely (tupleobject: bad argument to internal function)

A few days ago, out of the blue I started getting lots of Bad Gateway errors from my django application. In the logs I'm intermittently seeing these lines: Traceback (most recent call last): File ...
0
votes
1answer
35 views

configuring nginx to work with python3.2

I'm having some trouble configuring nginx to work with Python3.2. I'm also struggling to find anything resembling a decent tutorial on the subject. I did however find a decent tutorial on getting ...
0
votes
0answers
90 views

HTTP 413 Request Entity Too Large when uploading a small file

I'm running NGINX and uWSGI for my Django 1.3.2 application. I'm using django-storages to write uploaded images to S3. The response I get back is: 413 Request Entity Too Large from my application ...
0
votes
0answers
266 views

Flask+Nginx+uWSGI : ImportError: No module named site

I installed as the http://www.reinbach.com/uwsgi-nginx-flask-virtualenv-mac-os-x.html link's tutorial and when executing the command uwsgi --ini deploy/deploy.ini, the terminal says there was an ...
-1
votes
1answer
44 views

How uWSGI invokes a WSGI application [closed]

PEP 3333 states: The server or gateway invokes the application callable once for each request it receives from an HTTP client, that is directed at the application. Then there follows an ...
0
votes
0answers
40 views

Django Database “Out of sync”

I'm using Django 1.5 (with nginx and uwsgi) with a number of workers, but am running into a problem with getting all the workers to have access to the most up-to-date information. Namely, when I ...
0
votes
1answer
107 views

How do I configure a Flask-based python app using nginx and uwsgi?

I have a Flask-based python app that needs a bunch of configuration information (e.g. database connection parameters) on app start. In my nginx configuration, I can provide parameters using ...
2
votes
2answers
134 views

uwsgi service is not starting

I have a python application (concrete Django) running on my server. Before yesterday, it was successfully running under apache with mod-wsgi with almost no problem. I had two main reason to switch to ...
1
vote
1answer
201 views

How to configure nginx and uWSGI for Django project [closed]

I am trying to configure nginx + uWSGI for Django project on local machine..but nginx and uWSGI not interacting with each other.. I have put nginx configuration in /etc/nginx/sites-available/default ...
0
votes
1answer
120 views

Configure uWSGI to use virtualenv

I've installed uWSGI and nginx through apt-get and placed my uwsgi-conf.ini in /etc/uwsgi/apps-available and symlinked it to apps-enabled, and followed the same procedure for the nginx configuration. ...
0
votes
0answers
14 views

Nginx upload_module with WSGI

In my setup I have nginx in front of uWSGI running a flask app. I need the user to upload image files so I'd like this to be as non-blocking as possible. Upload_module seems perfect for this job, but ...
2
votes
1answer
45 views

How to get uWSGI Python exception message pretty printing?

Would like to know if there is a simple, easy way to have uWSGI pretty print exception messages (for Python specifically, not sure if the settings are particular to Python or not). Thanks very much!
0
votes
1answer
23 views

Running binary WSGI app

I have a working wsgi app developed in python. I know that pyinstaller will compile and get me a binary of this application. I have a nginx and uwsgi running. can i use this binary instead of the ...
0
votes
1answer
121 views

Installing uwsgi with plugins using 'pip'

I installed uwsgi using pip install uwsgi. When I run uwsgi, I get a couple of errors. The command I'm running is uwsgi --master --emperor /etc/uwsgi/apps-enabled --die-on-term --uid www-data --gid ...
1
vote
1answer
93 views

Setup uWSGI as webserver with pyramid (no NGINX)

Most of the available tutorials show how to set up uWSGI with an upstream HTTP server (like NGINX). But uWSGI alone can act beautifully as router/proxy/load-balancer - refer this For my project, I ...
0
votes
0answers
29 views

uWSGI not releasing memory

I tried my hands with an extremely small django app that serves mainly html+static content with no db operations. The app is on nginx and uwsgi. I also have postgres installed, but for this issue, i ...
0
votes
0answers
36 views

Python under uWSGI creates files and dirs with wrong permissions

I'm a newbie in Python developing. I write a small Python web app that creates some files and directories. When I run it in command line everything is ok. But under uWSGI all new files get -rw-rw-rw- ...
1
vote
1answer
160 views

Suggestion on finding a Python web-framework that supports py3k?

Since one month ago I started learning Python, and I find the language simple and useful. I'm a web developer but I only have experience with PHP, I have used frameworks like CakePHP or Zend. I am ...
0
votes
1answer
52 views

Nginx: 413 entity too large - file does not reach the application

I'm using Nginx and uwsgi with wsgi app. When I try to upload the image sometimes the application does not get the image and there used to be error 413 entity too large. I fixed this issue by adding ...
0
votes
1answer
36 views

Communication between workers in uwsgi

I'm relatively new to Python, coming from a .Net background. The short version: How can I create an application-wide singleton or some other mechanism to allow multiple threads/processes to ...
1
vote
1answer
28 views

Make uWSGI use all workers

My application is very heavy (it downloads some data from internet and puts it into a zip file), and sometimes it takes even more than a minute to respond (please, note, this is a proof of concept). ...
0
votes
1answer
49 views

Django, ngnix, and uwsgi site cannot deploy on remote server

I need to deploy my django site using ngnix and uwsgi. it works fine in localhost. but when I give my remote server, it does not work. this is my ngnix.conf file # nginx.conf upstream django { ...
3
votes
0answers
94 views

Cypher error with py2neo only when running nginx

I have a flask app that uses neo4j for some data. Everything runs fine locally when I use the python server, but when I deploy on nginx+uwsgi, I can no longer execute cypher queries in py2neo. I ...
1
vote
1answer
175 views

uWSGI Fails with No module named encoding Error

I am trying to setup uWSGI with Pyramid, but I am getting this error, when attempting uwsgi --ini-paste development.ini Python version: 3.2.3 Error message: uwsgi socket 0 bound to UNIX address ...
0
votes
3answers
99 views

uWSGI server does not respond

I'm trying to run a Django application using Nginx + uWSGI with no success. After hours of googling and debugging I made the simplest possible uwsgi configuration that must work: $ uwsgi --http ...
1
vote
1answer
146 views

uwsgi python3 plugin doesn't work

i compiled uwsgi with make and it's successfully done,and now i decide to run my django1.5 site with python3.3 . i've checked for the doc (http://projects.unbit.it/uwsgi/wiki/Guide4Packagers) and set ...
0
votes
1answer
145 views

Flask on nginx + uWSGI returns a 404 error unless the linux directory exists

This might be kind of a strange problem, but I'm not too experienced with these things and I don't know how to search for this kind of error. I have a server configured with nginx and uWSGI. ...
0
votes
0answers
275 views

How to configure graphite with nginx and uwsgi?

I'm not quite sure what it is that I am doing wrong, but I am about ready to give up. Currently, we are using this cookbook https://github.com/gosquared/graphite-cookbook to get graphite up and ...
0
votes
1answer
117 views

Python (uWSGI), MySQL - Broken Pipe error

I use Bottle framework, uWSGI, MySQL connector for Python 3 (https://github.com/petehunt/PyMySQL) and MySQL itself. I recently ran into the error: Traceback (most recent call last): File ...
0
votes
1answer
191 views

nginx timeouts when uwsgi takes long to process request

I have nginx + uwsgi for python djnago app. I have the following in my nginx.conf location / { include uwsgi_params; uwsgi_pass 127.0.0.1:9001; uwsgi_read_timeout 1800; ...
1
vote
1answer
300 views

Easy application logging/debugging with nginx, uwsgi, flask?

I'm not looking to turn on the dangerous debugging console, but my application is getting a 500 error and doesn't seem to be writing any output for me to investigate more deeply. I saw this ...

1 2 3 4 5 8