Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model ported from Ruby's Unicorn project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy.

learn more… | top users | synonyms

0
votes
2answers
22 views

Running Gunicorn behind chrooted nginx inside virtualenv

I can this setup to work if I start gunicorn manually or if I add gunicorn to my django installed apps. But when I try to start gunicorn with systemd the gunicorn socket and service start fine but ...
1
vote
4answers
38 views

Restart Python.py when it stops working

I am using Cherrypy framework to run my python code on server. But the process stops working when the load increases. Every time this happens I have to manually go and start the python code. Is there ...
0
votes
0answers
36 views

Development environment for Django (Linux Mint or Ubuntu Server 12.04 LTS) [closed]

I am currently tasked to choose the development environment for a new django project. Would Linux Mint or Ubuntu Server 12.04 LTS be a better developing/hosting environment for an internal website? ...
0
votes
0answers
16 views

Gunicorn Access logging logging to stderr as well?

I am running the following command: authbind gunicorn -b 0.0.0.0:80 backend:app --access-logfile=/home/blah/Logs/backend.access.log I am able to see access logged to this backend.access.log: ...
1
vote
1answer
42 views

Gunicorn throws OSError opening file when invoked by supervisord

I have an application that presents a form and generates a PDF file with pdflatex which is returned to the browser as a file attachment. It works when I invoke the application server manually, but ...
1
vote
0answers
23 views

Gunicorn Django and logging info to a file

I'm trying to setup my logging settings to send logging.info('any message') to a file through stdout. This is my gunicorn_django script: $ gunicorn_django -w $NUM_WORKERS --user=$USER ...
1
vote
0answers
18 views

flask application timeout with amazon load balancer

I'm trying to use a Flask application behind an Amazon Load Balancer and the Flask threads keep timing out. It appears that the load balancer is sending a Connection: keep-alive header and this is ...
0
votes
1answer
26 views

Can I make a gunicorn worker stop (and restart) AFTER responding to a request?

I have a worker process that loads a special data structure at startup, and then periodically afterwards. However, the data structure -- a third party C++ module -- has a memory leak. I tried using ...
4
votes
2answers
54 views

Running heroku gunicorn within subfolder?

I'm new to heroku and gunicorn so I'm not sure how this works. But I've done some searching and I think I'm close to deploying my Django app (1.5.1). So I know I need a Procfile which has web: ...
0
votes
0answers
58 views

Trying to run Django app on Gunicorn locally using Foreman

I'm following Getting Started with Django on Heroku tutorial When I'm trying to run Django app on the Gunicorn using Foreman, i get next error traceback: 09:23:33 web.1 | started with pid 7012 ...
1
vote
1answer
41 views

Why is gunicorn_django not recommended anymore?

We have an app deployed using gunicorn_django in production. I've noticed that it's no longer recommended. I'm wondering why it's not recommended, and whether we need to migrate to the newer way. ...
2
votes
0answers
26 views

Share a numpy array in gunicorn processes

I have a big numpy array that is stored in redis. This array acts as an index. I want to serve filtered result over http from a flask app running on gunicorn and I want all the workers spawned by ...
0
votes
1answer
38 views

Passing Apache Environment variables to gunicorn through mod_proxy

I'm not entirely sure this is the right way to skin this cat, so feel free to propose completely alternate solutions. I have a Django site running on gunicorn behind apache's mod_proxy (with the ...
1
vote
1answer
70 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
0answers
22 views

Django shows 404 on Add / Upload page behind web server not in dev mode

Using Django 1.4.2 here. When i run server in development mode with manage.py I can sumit a post (which has file attachments) and no errors occur. The moment I use gunicorn+nginx I get only 404 on ...
0
votes
1answer
31 views

How to use gunicorn as django test server

I'm having trouble with normal django testserver (it hangs on some REST API I'm writing). However my normal server (gunicorn) has no problem with it. Therefore I'd like to use gunicorn as my test ...
0
votes
2answers
53 views

Getting Gunicorn to run on port 80

I built an API with flask. My app does not have any static assets hence there's no reason for me to use nginx. I wish to run gunicorn on port 80. I have a "deploy script": mkdir .log 2> ...
0
votes
1answer
31 views

Urllib2 POST request results in 409 conflict error

I am calling google's pubsubhubbub publisher at http://pubsubhubbub.appspot.com via Django's view. I want to fetch all the youtube uploads feeds using it. I am sending a 'post' request to it using ...
2
votes
0answers
55 views

Error when switching Django project to gunicorn server in virtualenv

I have a project that creates objects that I would like to key with uuids. When I run this project with the simple Django test server in manage.py everything works great. However I am trying to deploy ...
0
votes
0answers
28 views

htaccess: force www to non www adds extra slash at the end

I'd like to force www to none www, but the rewrite seems to add another (so double) slash at the end. The setup below is for a Django/Gunicorn/Supervisor environment. Where/why is the extra slash ...
0
votes
2answers
54 views

What does the proxy_pass option in the NGINX config do?

What does the NGINX proxy_pass config do? Let's say for example I have a Django app that is hosted up on Amazon's EC2 services. On EC2, let's say I have 1 load balancer in front of 2 nginx servers. ...
0
votes
1answer
47 views

How to allow NGINX to buffer for multiple Django App Servers

How can one allow NGINX to buffer client requests for multiple Django App Servers that all run a WSGI server like Gunicorn? What do I need to change in the config files?
0
votes
1answer
39 views

Sharing an object between Gunicorn workers, or persisting an object within a worker

I'm writing a WSGI app using an Nginx / Gunicorn / Bottle stack that accepts a GET request, returns a simple response, and then writes a message to RabbitMQ. If I were running the app through straight ...
0
votes
0answers
50 views

What would be the best way to make sure only one worker launches the apscheduler event in a pyramid web app running multiple workers

We have a web app made with pyramid and served through gunicorn+nginx. It works with 8 worker threads/processes We needed to jobs, we have chosen apscheduler. here is how we launch it from ...
2
votes
0answers
28 views

How to prevent gunicorn access log from getting on to the console and reload properly?

I have a pyramid application and I wanted to serve it using gunicorn instead of the default waitress. But the biggest problem I have is that there is not enough documentation on the subject anywhere. ...
1
vote
1answer
103 views

Heroku app runs locally but gets H12 timeout error (uses a package)

Similar questions have been asked but the H12 seems to be caused by many things and none of the answers apply here. I have built python apps with heroku before but now I'm using a package structure ...
2
votes
1answer
25 views

How do you hide Gunicorn from returning the 'server' http header?

Would like to mask the version (or remove the header altogether).
0
votes
1answer
68 views

How do I define a settings.LOGGING so that gunicorn will find the version value it wants?

I am trying to run Gunicorn, and I am running into an error (pasted below). At present it looks like Gunicorn or one of its dependencies is attempting to read settings.LOGGING, and the settings.py ...
1
vote
2answers
52 views

What is the appropriate number of Gunicorn workers for each Amazon Instance Type?

I'm currently trying to figure out what the appropriate number of workers is for each Amazon Instance Type. I used to run one Gunicorn worker, however that proved to be quite slow. Many developers ...
0
votes
0answers
91 views

postgresql idle connections with django (and gunicorn+gevent)

My stack incudes django (1.4.3), psycopg2 (0.0.3), and postgres (9.1). Additionally, I am using psycogreen.gevent.patch_psycopg because I am serving up my django with gunicorn and gevent. ...
1
vote
2answers
93 views

django 1.5 gunicorn workers eats memory

I am using django 1.5 and gunicorn (sync workers) Workers memory usage grow with time i try to use Dozer to find the reason, but get: AssertionError: Dozer middleware is not usable in a ...
0
votes
2answers
91 views

Running Gunicorn with Foreman

If I do runserver or gunicorn straight from the commandline, the website works fine. However, if I try to run gunicorn using Foreman as specified in the Heroku documentation: web: gunicorn ...
0
votes
1answer
17 views

Are translations greenlet-safe in Django?

After taking a look at Django's source code, I see that Django stores the active language in the current thread. In django.utils.translation.trans_real: _active = local() ... def activate(language): ...
0
votes
1answer
47 views

How to output gunicorn log in pycharm

I'm using Pycharm 2.7.1 and gunicorn. When I run gunicorn, I add a new Python Configuration. And I then add the command: gunicorn_paster -c *.conf If I want to view log, I will open the terminal ...
2
votes
1answer
155 views

Django + Gunicorn + Nginx = CSRF cookie not set

I've set up Django behind Nginx with Gunicorn, but when I try to log in to the admin panel, I get: Forbidden (403) CSRF verification failed. Request aborted. Reason given for failure: CSRF cookie ...
0
votes
2answers
58 views

Nginx - can't get past welcome page using proxy_pass to gunicorn

I am trying to setup nginx to pass to a gunicorn backend to run a Django project. Unfortunately, I cannot seem to get nginx to display anything other than the welcome page, seemingly no matter what I ...
0
votes
1answer
46 views

django+gunicorn+nginx wierdness

I am following the instructions in http://senko.net/en/django-nginx-gunicorn/ to deploy my django application. My application is running under gunicorn and I have configured nginx to serve the site. ...
1
vote
0answers
42 views

Mako fails to locate templates with TopLevelLookupException when running under gunicorn

I specify my template directory in a flask app using the following code: directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "templates/") lookup = TemplateLookup([directory]) ...
0
votes
1answer
307 views

Proper Way to Deploy Django/Static Files on Heroku

I am currently working on a Django application, and planning to deploy with Heroku and gunicorn. I've been reading some documentation, and I'm a little confused over proper method to use either nginx ...
0
votes
2answers
100 views

django with gunicron and nginx

I have developed django application and now deploying this on freebsd server using gunicron and nginx. I have added guncorn in projects settings files under installedapps. and placed gunicorn.conf.py ...
0
votes
2answers
136 views

Gunicorn fails when using WSGI

I want Gunicorn to talk with TileStache via WSGI. But when I run this command... gunicorn "TileStache:WSGITileServer('/var/osm/bright/project/OSMBright4/tilestache.cfg')" ...I get these errors: ...
1
vote
1answer
129 views

Handle multiple process request in Django with Gunicorn server

I just want to know is it possible to run and handle multiple processes in Django when i am using gunicorn server. If one client is requesting for data and at the same time other client request the ...
0
votes
1answer
110 views

How to deploy two django projects in one git repository with chef?

I have a git repository with two Django 1.5 projects: one for a website, the other for a REST api. The git repository looks like this: api_project/ www_project/ logs/ manage.py my_app_1/ my_app_2/ ...
0
votes
1answer
301 views

Gunicorn-Django: django project not found

I've been trying to set up my production server (Linode 512) by Django, Gunicorn, nginx, I'm getting errors in nginx and gunicorn. As the nginx part purely relates with the server issues, I gotta post ...
1
vote
1answer
186 views

Gunicorn+Django+Heroku. Python Path Issue

I'm running a Django app that I used to deploy to Heroku with Gunicorn without a hitch. By that I mean that I could run foreman start on my localhost and be able to understand whether the ...
1
vote
1answer
266 views

Django+gunicorn+nginx upload large file 502 error

Problem Uploading 1-2mb files works fine. When I attempt to upload 16mb file, i get 502 error after several seconds More detalied: I click "Upload" Google Chrome uploads file (upload status is ...
1
vote
2answers
126 views

Gunicorn 500'ing on POST to Flask app

Here's the Flask app: from flask import Flask, request, render_template, redirect, url_for, flash app = Flask(__name__) @app.route('/') def index(): return render_template('index.html') ...
1
vote
1answer
106 views

Does gunicorn + gevent monkey patch threadlocals to be greenlet-locals automatically?

When running gunicorn in gevent mode, are the monkey patches (particularly those for threadlocals) described here, which make threadlocals greenlet-locals, already applied automatically? (I am ...
0
votes
1answer
280 views

how to setup subdomain in following environment: nginx, supervisor, django, gunicorn?

I have a django app setup with nginx+gunicorn+supervisor and its working fine. But i need to create a subdomain for staging or development like "dev.domain.com". I have added another server block in ...
1
vote
0answers
253 views

Gunicorn worker timeout

I have a Django application running in Gunicorn behind Nginx. Everything works fine, exect for one strange thing: I have a "download" view and a RESTful json API. When call the download view I use ...

1 2 3 4 5 6