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
297 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 ...
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 ...
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
0answers
263 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 ...
0
votes
1answer
105 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 ...
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. ...
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 ...
0
votes
1answer
144 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. ...
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
vote
2answers
193 views

Flask on uWSGI on Ubuntu 12.10 - version mismatch?

I'm trying to follow this guide to serve my Flask app with uWSGI: http://flask.pocoo.org/docs/deploying/uwsgi/ However, when I try to run uwsgi, I get the following problem: ...
0
votes
1answer
52 views

How do I convert uwsgi command line into a yaml file?

How do I put the following command into a app.yaml file. I would like to know what am I doing wrong? uwsgi --socket 127.0.0.1:3000 --file /home/james/james-api/runserver.py --callable app --processes ...
1
vote
0answers
68 views

uWSGI repeated execution of long running Flask app.route() function

I'm currently running uWSGI with a Flask web app, via the command line. The command used is: uwsgi --http :80 --file /scripts/flaskWebApp/app.py --callable app --processes 4 --threads 2 -b 25000 -M ...
0
votes
0answers
83 views

Flask + nginx permissions issues but dev server works fine

I am developing a small app for personal use using flask + uwsgi + nginx. Part of the app deals with directory traversal of anything found in the /media/ dir on linux box. This is the pertinent ...
1
vote
1answer
649 views

Can only run uwsgi with root

I'm preparing to use nginx/uwsgi with flask for a website i'm developing, but i'm running into problems. NB the website itself runs great using flask's debug :5000 port, but i want to go into ...
0
votes
1answer
99 views

uWSGI + python urllib2 very slow

I have a huge problem :) Here is the story: I have 2 web apps running on one server. Each started by uwsgi via supervisor (nginx there too). One project(app2) makes HTTP requests through the urllib2 ...
2
votes
1answer
198 views

Flask + uwsgi + nginx: TypeError: … takes no arguments (2 given)

I installed uwsgi with nginx on my ubuntu 12.04 homerserver and try to test a simple Flask-App: from flask import Flask app = Flask(__name__) @app.route('/') def application(): return 'Hello ...
0
votes
2answers
213 views

uwsgi returns 500 error after 1 minute

I've setup a nginx+uwsgi+flask app and it works like a charm but if I load a page and load other page (or the same page) after 1 minute, uwsgi returns a 500 internal server error without any ...
0
votes
1answer
375 views

NGINX, uWSGI and Flask not running subprocess

My NGINX configuration: server { server_name 127.0.0.1; listen 4450; location ~* ^/.*$ { include uwsgi_params; uwsgi_pass unix:/tmp/esrvadmin.sock; } } uWSGI start up: uwsgi --uid ...
0
votes
1answer
164 views

uwsgi flask application got nginx variables unexpanded

Strange problem with nginx variables passed after redirect to python code through uwsgi_pass -> uwsgi -> flask. uWSGI itself sees variables like $uri or $request_filename expanded. My python code sees ...
1
vote
2answers
2k views

flask + nginx + uwsgi - Python application not found

cat /etc/nginx/sites-available/mywebsite server { listen 80; server_name mywebsite; location /static { alias /var/www/mywebsite/static; } ...
1
vote
0answers
144 views

uWSGI and gracefully killing a multithreaded Flask app

I am implementing a system that uses APScheduler (which uses thread pool) in order to fetch some resources. I am trying to figure out a way to detect "app restart" so that I will be able to shut down ...
3
votes
1answer
203 views

How to read UWSGI parameters in python/flask passed from nginx

I set up python/flask/uwsgi+nginx web app and it works fine. I want to use geoip, I set it up on nginx side: location / { include uwsgi_params; uwsgi_pass ...
2
votes
1answer
86 views

When used with uwsgi, redis APPENDs value instead of SETing it

I am using the following stack: nginx uwsgi Python (Flask) I've set up a little app that utilizes redis as its main database. I only use GET, SET, EXISTS and EXPIRE in my code. When trying the ...
0
votes
1answer
1k views

Flask, nginx, and uwsgi

My flask app looks like this... myapp.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == "__main__": ...
0
votes
1answer
676 views

flask under nginx + uwsgi

we're developing a flask application but after 4 hours trying to configure the server I can't figure it out. Here's the thing: the vm is accessible through xx.xx.xx.xx:81 on this server, my app is ...
0
votes
1answer
342 views

Using the GeoIP module with Nginx and UWSGI

I am trying to integrate this module but its a little beyond me: http://wiki.nginx.org/HttpGeoipModule In my nginx config I have this: geoip_country /usr/share/GeoIP/GeoIP.dat; I added it to the ...
1
vote
2answers
1k views

uwsgi: your server socket listen backlog is limited to 100 connections

I run a flask app on uwsgi. I use supervisor to manage uwsgi process. I find the log saying that your server socket listen backlog is limited to 100 connections. How to overcome 100 ...
2
votes
1answer
1k views

nginx + uwsgi + debian + daemon

Well, first of all these are just a few tutorials I have followed: projects.unbit.it/uwsgi/wiki/Doc projects.unbit.it/uwsgi/wiki/Install projects.unbit.it/uwsgi/wiki/RunOnNginx ...
1
vote
1answer
168 views

How to configurate nginx and uwsgi to redirect calls from path to subdomain?

i am running a flask app on uwsgi and nginx. They website serves two functions: /admin:for backend administration /api:for rest api I want all api calls go through the subdomain:api.mysite.com. ...
1
vote
1answer
2k views

Flask and uWSGI - unable to load app 0 (mountpoint='') (callable not found or import error)

I get the below error when I try and start Flask using uWSGI. Here is how I start: > # cd .. > root@localhost:# uwsgi --socket 127.0.0.1:6000 --file /path/to/folder/run.py --callable app - ...
4
votes
2answers
2k views

logging errors with flask

I'm trying to log an error in a decorator function using app.logger.error(''), but it just doesn't work. In addition I cant debug this well and I can only see the response from the http client: (I'm ...
0
votes
1answer
400 views

uWSGI+Flask+boto - thread safety

Say I have a Flask application, served by uWSGI using multiple processes, like: uwsgi --socket 127.0.0.1:3031 --file flaskapp.py --callable app --processes 4 And my Flask app is organized like ...
0
votes
0answers
280 views

How to deploy a project in Ubuntu System?( Nginx + uWSGI + Flask )

I am using an open source project(thepast) named "Thepast";But I'm a rookie.Using the Linux system for a short time.So i don't know how to deploy the project with Nginx + uWSGI + Flask.Who can help ...
5
votes
3answers
1k views

nginx + uwsgi + flask - disabling custom error pages

Is it possible to disable nginx's custom error pages - if I may call them that - to display my framework's exception pages? I can't really see my werkzeug debugger tool rendered in html... UPDATE ...
1
vote
0answers
856 views

nginx+uwsgi flask app : error while reading response header from upstream

The site runs with nginx and an uwsgi (flask app) and shellinabox terminal. After every 20 or 30 minutes ,the shellinabox terminal not getting loaded and nginx log shows this - 2012/05/26 14:20:27 ...
0
votes
3answers
298 views

Mongoengine Uwsgi Dbref attribute error

I have a weird error in my flask application. Problem is that the code below works fine in the Flask development server but fails in the production server (Uwsgi+Nginx). The code's intention is to ...
2
votes
6answers
2k views

How to set up autoreload with Flask+uWSGI?

I am looking for something like uWSGI + django autoreload mode for Flask.
8
votes
1answer
1k 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
2answers
1k 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 ...
3
votes
2answers
3k views

Deploying flask on cherokee and uwsgi [closed]

I'm attempting to deploy a flask web app I've developed using cherokee and uwsgi. I got cherokee and uwsgi installed and working (i think uwsgi works), but when I configure the app in cherokee, i just ...