0
votes
0answers
20 views

How to handle redirect response properly when using Nginx as proxy server, django as backend

I have a Django application and recently I need to launch a beta version. I want to keep the current running application untouched, and redirect all request starts with "/beta" to the beta app, with ...
0
votes
2answers
25 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 ...
0
votes
0answers
21 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 ...
2
votes
1answer
41 views

How to serve Django static file on nginx

I am trying to configure Nginx with uWSGI to serve Django app but the layout of admin panel is distorted totally... Here is my Nginx configuration: upstream django { server 127.0.0.1:8000; } ...
0
votes
0answers
33 views

Lazily serving Django static content with NGINX

Let's say I've got Django code rooted in /var/my_app. I've got a MEDIA_ROOT configured at /var/my_app/files, and MEDIA_URL is /var/my_app/files at /files. Serving these files through UWSGI (or ...
1
vote
0answers
19 views

Views handling JSON Post-ed to a Django URI not working on the production nginx server

I have written a django view that receives data in a JSON format via POST Method, and I return a JSON Response to it. Though my View is working perfectly on the local Development Server, it is ...
2
votes
2answers
47 views

How to configure nginx and uWSGI for Django project

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
0answers
19 views

django with fagungis error

So I have been trying to deploy a Django application on Ubuntu today and I was told that fagungis would do all the configuration and setup. So when I started configuring fagungis during the setup ...
0
votes
0answers
41 views

Django-Nginx, 502-BAd Gateway Error

I have implemented a Search page for my website on Django-Nginx platform. When I pass a long string as a GET parameter to search page, server return "502 Bad Gateway" error. The error logs shows ...
0
votes
1answer
45 views

setting up django with nginx and apache

I just started developing in Django a few days back. After finishing a few applications I read that Django is best served using nginx for static content and a reverse proxy to apache for dynamic ...
2
votes
0answers
44 views

Searching for a project skeleton for Chef + Django on Linux

Is there a pre-existing, best practices project skeleton for Chef + Django web applications on Linux (Ubuntu preferably)? For production Django systems our preferred setup is Supervisor, Nginx, ...
0
votes
1answer
40 views

Force HTTPS in Nginx for Django

I have tried to do this: Create a file named middleware.py (chmod 775, chown www-data) in the same directory as my settings.py Paste this in middleware.py: http://djangosnippets.org/snippets/880/ ...
1
vote
1answer
25 views

GeoIP always shows the server's IP address

I am trying to use GeoIP, but I have a problem when I use REMOTE_ADDR. The IP shown is that of my server and not the client. from django.contrib.gis.geoip import GeoIP Example context: g = ...
0
votes
1answer
35 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 { ...
1
vote
2answers
55 views

Rewrite URL in Nginx proxy + apache setup

I'm working in python/django with apache and a Nginx proxy. I need to transform some URLs like these: www.mydomain.com/client_A/ www.mydomain.com/client_B/ to www.mydomain.com/clients/1/ ...
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
2answers
65 views

Django app works via manage.py runserver but page rendered via mod_uwsgi fails to refer to static elements

I am at the end of my rope here... and plan to start digging into Django source code to figure this out. I have a Django app that has been created in the standard fashion via start project. So far I ...
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 ...
0
votes
1answer
86 views

Getting Nginx to serve static content in front of Django local server

I'm trying to use Nginx in front of Django's localhost webserver (127.0.0.1:8000) to serve the static content. I'd like Nginx to serve all files under '/static', and if not, pass the request onto the ...
0
votes
1answer
84 views

Serving protected files with Django and Nginx X-accel-redirect

I'm trying to get Nginx and Django to play together to serve downloadable protected files. I just cannot get it to work. Here's my Nginx config: location ~ ^.*/protected-test/ { alias ...
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
2answers
59 views

Django admin datetime `now` button picking correct local time, but wrong server time

Evening all, When you click now on the Django admin DateTimeField picker widget, it fills in the current time with a little javascript. However, my server is in UTC, and my client is in UTC+1 ...
0
votes
1answer
81 views

ZeroMQ + Django & uwsgi issues

Using django, we need to send a message to another, separate python program. Zeromq seems to be lightweight and should fit the bill for this. However, trying to get it to work and it always ends up ...
0
votes
1answer
25 views

django i18n does not translate some strings

I am trying to add translations for some strings in a django application running under nginx. I run makemessages and that updates the django.po for the specified language, I can see with rosetta that ...
0
votes
2answers
141 views

Nginx permission denied 13 with Django on static content [closed]

I used this tutorial to setup a virtualenv and the nginx server. I did exactly what was told, but I still get a Permission denied (13) error when trying to access static content. I already set ...
0
votes
2answers
55 views

Upload file with FileField and nginx just throw errors?

I'm new to Django, I'm learning how to handle uploading file with django, I did the same things with the document, but my nginx just throw out errors, here is my views.py: @csrf_exempt def ...
0
votes
1answer
67 views

django rest framework gives 403 when behind nginx but not directly

Using django-rest-framework. I'm getting HTTP 403 errors when running in production behind nginx. When I call a particular view, which inherits from APIView to support a GET operation, I get: ...
0
votes
0answers
262 views

django vs. tornado + sqlalchemy [closed]

I'm about to embark on a major web application refactoring. Currently I'm using php + mysql for most of my public facing website and node.js + mongo for my data aggregation/statistics collection and ...
0
votes
0answers
64 views

Root directive in nginx for django/uwsgi

Let's say I have a django project in /home/django/project0/ and my setup is: server { ... root /usr/share/nginx/www/project0; ... location / { uwsgi_pass ...
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 ...
1
vote
1answer
62 views

Django behind nginx: secure & robust way to get remote IP address

I have a Django server running behind an nginx proxy. I'm currently trying to determine the remote address by reading request.META['REMOTE_ADDR']. More precisely: an app that rate-limits attempts to ...
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. ...
0
votes
1answer
308 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
0answers
41 views

nginx django flup one request cgi run twice

nginx django flup one request cgi run twice , the conf is : server { listen 80; server_name localhost; location / { fastcgi_pass 127.0.0.1:8000; fastcgi_param ...
0
votes
1answer
302 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 ...
0
votes
0answers
160 views

django not recieve POST data from nginx-upload-module

please help me with that problem: I have nginx-upload-module and nginx-progress-module if i send form without nginx: I get POST data and request.FILES -all norm and I have no problem opposite: if i ...
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 ...
2
votes
1answer
94 views

Is Host header poisoning possible in such case?

Django team considers host header poisoning (CVE-2011-4139 and CVE-2012-4520) as a security issue that must be resolved at a framework level. Pyramid, for instance (that is, its underlying low-level ...
0
votes
1answer
65 views

Django always returns error 404 with nginx

I have a problem with Django. Application's url config looks like this: urlpatterns = patterns( '', url(r'^api/', include(api_urls.getUrls())), url(r'^api/vk.com/buy.coins/$', ...
1
vote
0answers
34 views

Asynchronous celery task is blocking main application (maybe)

I have a django application running behind varnish and nginx. There is a periodic task running every two minutes, accessing a locally running jsonrpc daemon and updating a django model with the ...
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
votes
2answers
78 views

Refresh browser cache on opening it

I have a webpage which use jquery.ajax to perform some actions. When I call ajax action, close browser and then open it I don't see changes made by ajax. How can I force browser to refresh page on ...
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
vote
1answer
472 views

Nginx + gunicorn + django

Using this stack is giving me problems with django compressor and less static files. If I run the django dev server behind nginx there is no problem. If I try gunicorn, I get errors from gunicorn ...
-1
votes
1answer
50 views

Database search vs file exist search which is faster [closed]

I have an upload script and I would like to implement a feature that it will detect if we already have the file in the system and just not upload it. So I thought of having SHA1 & MD5 hashing ...
3
votes
0answers
536 views

gunicorn, nginx (v 1.3.14), django, and gevent-socket.io, on dotcloud

I am trying to deploy gunicorn + gevent behind nginx (v 1.3.14) on dotcloud. I have a few questions about it. I am aiming to adapt the python-on-dotcloud example. So far, I have not been able to ...
0
votes
1answer
67 views

rewrite rules for manage.py runserver like .htaccess for apache

Using .htacess, we can redirect requests like this : RewriteRule \.(?:txt)$ handle_txt.php which redirects all requests from .txt to handle_txt.php which sends the output in the required manner. ...
1
vote
2answers
178 views

Django @login_required cause redirects loop when using nginx and fastcgi

I set LOGIN_URL like this in settings.py: LOGIN_URL = '/login/' and in urls.py I and this URLConf: (r'^$', 'agent.index.redirect'), (r'^login/$', 'django.contrib.auth.views.login', ...

1 2 3 4 5 9