The uwsgi tag has no wiki summary.
7
votes
1answer
1k views
How to deply web2py using nginx?
web2py is an awesome python framework which has great documentation including several deployment recipes. Yet what I miss there is the recipe for deploying using nginx (preferably with uwsgi). There ...
5
votes
1answer
171 views
Serving static homepage with nginx and rest through uwsgi
I have a nginx + uwsgi website (using Flask for dynamic python pages).
I would like to serve the homepage which is static directly through nginx and route everything else to uwsgi.
The following ...
5
votes
3answers
948 views
uWSGI vhost problem
uWSGI config
[uwsgi]
socket = /tmp/uwsgi.sock
chmod-socket = 666
processes = 1
master = true
vhost = true
no-site = true
Nginx config
server {
listen 80;
server_name www.site1.com;
...
5
votes
1answer
915 views
Logging from Django under UWSGI
I am running my django app via uwsgi server and am starting 32 processes -args in my init script are:
ARGS="--pidfile ${PIDFILE} --uid ${UID} -s /tmp/${NAME}.sock --pythonpath ...
4
votes
2answers
186 views
Spawning a separate thread of execution (i.e. sending log email to dev) in Flask Python?
I am running a Flask webapp running behind uwsgi (2 processes). A part of my code involves pinging a remote resource, seeing if it has been modified (If-Modified-Since), and updating a local copy of ...
4
votes
2answers
659 views
uwsgi + python + nginx + willy nilly file execution
I'm using uwsgi on Nginx to run some Python code.
I'd like to bind uwsgi to a directory and make it render any .py file that I call from the server in the browser. I'm thinking like PHP, here ...
4
votes
1answer
197 views
Linux user scheme for a Django production server
I'm currently trying to set up nginx + uWSGI server for my Django homepage. Some tutorials advice me to create specific UNIX users for certain daemons. Like nginx user for nginx daemon and so on. As ...
4
votes
2answers
258 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
1k views
Nginx connection reset, response from uWsgi lost
I have a django app hosted via Nginx and uWsgi. In a certain very simple request, I get different behaviour for GET and POST, which should not be the case.
The uWsgi daemon log:
[pid: 32454|app: ...
4
votes
3answers
4k views
Django and Python + uWSGI
Using instruction I try to connect Python + uWSGI.
I made default project in a folder /home/sanya/django/pasteurl.
However, have opened it in a browser I get
uWSGI Error
wsgi application not found
...
3
votes
1answer
60 views
client connection id passed from nginx to uwsgi
I am using the following setup:
client -> Nginx -> uWSGI -> Python app
The connection between the client and Nginx is persistent. I am aware that there is no support for persistent connection ...
3
votes
1answer
202 views
Django uwsgi import error
I have a Django project with one app called subscribe. In root urls.py I use include from subscribe's urls.py.
I put to INSTALLED_APPS subscribe and in subscribe's urls.py I use ...
3
votes
3answers
663 views
WSGI vs uWSGi with Nginx
Could anyone please explain pros/cons when using WSGI VS uWSGI with Nginx.
Currently i am building up a production server for the Django website which i have prepared but unable to decide whether ...
3
votes
1answer
329 views
unwanted HTTPS -> HTTP redirects with nginx + uwsgi + flask app
I have a flask app, hosted by uwsgi, with nginx as a reverse proxy to uwsgi, using the built-in uwsgi proxy module. Whenever I visit a page that redirects to another page, the Location header points ...
3
votes
1answer
108 views
uwsgi + xdv integration
i'm trying to configure uwsgi + xdv as a frontend for plone and other applications (this is why i don't use collective.xdv)
any hints?
3
votes
3answers
1k views
uwsgi + django via Nginx - uwsgi settings/spawn?
I am leaning towards uwsgi+nginx for my Django app, can anyone share the best method for starting up my uwsgi processes? Does anyone have experience tuning uwsgi?
3
votes
3answers
2k views
Deploying Pylons with uWSGI
We're trying to move our intranet to Pylons. My boss is trying to set up Pylons to use uWSGI behind Apache so he can set up multiple, independent applications. However, he's having a difficult time ...
2
votes
2answers
71 views
simplest way to combine two Django projects
Best case scenario: Just modify the urlpatterns of one of them to include the urlpatterns of the other.
But as of now they both have seperate settings.py, seperate DB's, seperate directories. I ...
2
votes
2answers
567 views
django with nginx + uwsgi
I am trying django on nginx + uwsgi.
It works very well (faster than apache mod_wsgi), but if I have more than 100 concurrent connexion ( ie : tested with ab -n 100000 -c 150 http://localhost:8081/ ...
2
votes
1answer
252 views
Web2py nginx and domains
Hello I am running web2py nginx and uwsgi but I am running into an issue deploying 1 or more domains. The issue is the server is always returning the default welcome application and not the folder I ...
2
votes
1answer
163 views
How to debug long running python scripts or services remotely?
Pretty much what the title says, I would like to be able to connect to a python process running under paster or uwsgi and utilize pdb functionality.
2
votes
1answer
709 views
problem with nginx + uwsgi in vhost mode, running django app
I have a couple of django apps on my servers, running perfectly on their own socket file, but i plan to introduce some more django apps, so i prefer to run uwsgi in vhost mode, but it seems to have ...
2
votes
1answer
139 views
NameError for built-in Python functions in Django when working with uWSGI
I'm running Django 1.3 + Python 2.6 on Ubuntu 10.10 (64bit) with uWSGI (0.9.8).
However, occasionally I can find some strange logs in uwsgi.log, reporting that 'getattr', 'isinstance' is not ...
2
votes
2answers
542 views
Django + uwsgi + nginx + SSl
I am using Django on DotCloud which uses Django on top of uwsgi + nginx. I am trying to redirect all http traffic to https which is leading to a redirect loop. I am using the following http ...
2
votes
1answer
371 views
Cherokee causing problems spawning multiple uwsgi instances
I am running cherokee to serve a django app using uwsgi. I have been having some strange behavior since upgrading to cherokee 1.2.x.
The setup worked fine prior to cherokee 1.2.x and I haven't ...
2
votes
1answer
408 views
ImportError: cannot import name indexes
I get this error when I run uwsgi the first time:
ImportError: cannot import name indexes
When I cancel uwsgi and run it again it works but the site slows down and 502 error appears randomly. With ...
2
votes
2answers
713 views
Restart to see changes? Cherokee + uWSGI + Django/Pinax + Virtualenv
I'm having some trouble with Cherokee + uWSGI picking up on code changes to .py files in my django app. Even using
find -name "*.pyc" -delete
...seems to have no effect.
Changes are noticed ...
2
votes
1answer
1k views
uwsgi + django import error
I have a problem when I use django with uwsgi with the pythonpath.
I have a django project named 'project' which is the /sites/django/ directory
So to start uwsgi i use this command :
...
2
votes
3answers
1k views
uWSGI with Cherokee: first steps
Has anyone tried using uWSGI with Cherokee? Can you share your experiences and what documents you relied upon the most? I am trying to get started from the documentation on both (uWSGI and Cherokee) ...
1
vote
0answers
36 views
User permissions needed to run subprocess in Python under Nginx and uwsgi
[EDIT: The bug was not in the permissions. I had not provided a full path to the db in settings.py (using SQLITE3), so uwsgi could not find it. Thanks to @spicavigo for the guidance!]
I have a ...
1
vote
2answers
123 views
Django, Virtualenv, nginx + uwsgi import module wsgi error
Im trying to setup my django project on a staging server with nginx, virtualenv, and uwsgi, but I keep getting an import module wsgi error.
If theres a community I can find an answer is here... Thank ...
1
vote
1answer
109 views
Nginx: Multiple Django Projects with project root?
Usually i'm using cherokee. Due to some critical issues with the latest chrome release i had to change my productive server to nginx for the time being.
Currently trying to get my configuration ...
1
vote
2answers
135 views
Mysterious issue with Django + uWSGI + send email
I'm here to write you after about 1.5 hour of hard debugging.
First of all, these are the interested files:
/project/app/utils.py
from django.core.mail import EmailMultiAlternatives
import ...
1
vote
1answer
778 views
uWSGI + nginx for django project, error with strting uwsgi
I try to up webserver for django on nginx+uwsgi, os - debian (3.1.0-1-amd64 x86_64)
nginx 1.1.8-1, uwsgi 0.9.8.3-1
configuration:
<uwsgi>
<socket>/tmp/uwsgi.sock</socket>
...
1
vote
2answers
47 views
How do you get the current URL for a Python uwsgi app?
I'm using this uwsgi app:
http://projects.unbit.it/uwsgi/wiki
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return "Hello World"
I'd like to ...
1
vote
1answer
299 views
Nginx + uWsgi + Django strange json response behavior
Some tech specifications:
CentOS 6.0
uWSGI 0.9.9.2
Nginx 1.0.5
Django 1.3.1
uWSGI:
[uwsgi]
socket = 127.0.0.1:3031
master = true
processes = 5
uid = xx
gid = xx
env = ...
1
vote
0answers
191 views
uwsgi process died with “libgcc_s.so.1 must be installed for pthread_cancel to work”
uWSGI runs on CentOS 5 with python2.6
Sometimes, the below errors show in uwsgi log:
libgcc_s.so.1 must be installed for pthread_cancel to work DAMN !
process 2474 died :( trying respawn ... ...
1
vote
1answer
273 views
uWSGI: I got problem with threaded mode
If I use uWSGI without threaded mode, it works fine. But my original server run with Apache ServerLimit 1, threaded-mode.
It can handle concurrent connection, but my uWSGI can't (because worker only ...
1
vote
1answer
246 views
Django + uWSGI + Websocket client connection
We are trying to integrate Socket.io with our website. All messages are sent with uWSGI workers (Django). My problem is, that every message does all connection magic. It looks now like that:
Request ...
1
vote
1answer
679 views
Django+Nginx+uWSGI = 504 Gateway Time-out
I am running Ubuntu 10.04, Django 1.3, Nginx 0.8.54 and uWSGI 0.9.7.
Both Nginx and uWSGI load without error. However, when you access my site, it sits for a LONG time and then eventually loads a ...
1
vote
2answers
227 views
Serve Django site using Nginx without proxy_pass
I have done the nginx configuration for serving django app .i am able to serve the django site using proxy pass for that i have to run the server manualy and then nginx serves the site.I want to ...
1
vote
1answer
253 views
issues when using pycassa with uwsgi
We are using pycassa with uwsgi. There are about 16 uwsgi processes.
It is strange that one process can get the data which is queried by
another process. e.g. there is one row in column family A, ...
1
vote
2answers
593 views
Django, uWSGI & nginx: Process dies for “no reason”
I am using uWSGI and nginx to run two parallell Django apps. One of them, the one with somewhat more load (both are very small) keeps dying about once every 24 hours with the following message:
[pid: ...
1
vote
2answers
389 views
Python subprocess.Popen slow under uWSGI
I've set up a development server running Cherokee on Fedora 14, using uWSGI to interface with my WSGI application.
When the application is hit with the first request, I spawn a process like so:
from ...
1
vote
1answer
567 views
help me with config nginx-varnish-uwsgi-django
I'm deploying my django app with nginx-uwsgi
I wanna add Varnish to this stack.
As I know Varnish can cache only ip and port.
But my stack configured this way:
location / {
uwsgi_pass ...
1
vote
2answers
449 views
uWSGI xml/ini config options
Is there any description for all the processed tags in the xml/ini config for uWSGI?
The docs say that all the command line options may go in xml/ini, but there is more, in particular the following ...
1
vote
3answers
2k views
uWSGI + Django + Virtualenv unable to pick up _functools (import error)
OK, So I have tried this with & without a virtualenv:
uwsgi --home /home/auston/new_proj/ --socket /tmp/uwsgi2.sock --chmod-socket --module app_wsgi --pp /home/auston/new_proj/nikeshere --logto ...
1
vote
1answer
655 views
How do I dynamically add pylons apps to a uwsgi process on nginx with UWSGI_SCRIPT?
I have successfully deployed a single pylons app on nginx + uwsgi using:
uwsgi --paste config:/var/www/sites/helloworld/development.ini --socket :3031 -H /var/www/virtualenv
However I am using ...
0
votes
0answers
22 views
some django's logs are missing when host in uwsgi with multiple process
I'm using django+uwsgi for a web project. But I found some django logs would be missing after uwsgi is running for a while!
The situation is that: I config the uwsgi with 8 process. When I start the ...
0
votes
1answer
43 views
Error during uwsgi installation with pip
I decided to run my sites on nginx + uwsgi . But got stuck on installing uwsgi. I made some stupidty with source.list on my debian server with unstable packages , then deleted half and installed again ...