First time here? Check out the FAQ!
0

How to configure uWSGI to serve Askbot?

what is the default command that works with askbot

ex.

uwsgi --http :8000 --home /home/user/Env/site --chdir /home/user/site -w site.wsgi

I need help for wsgi the default uwsgi.ini file contents.

Thanks..

gopalraha's avatar
332
gopalraha
asked 2016-07-29 01:31:46 -0500
Evgeny's avatar
13.2k
Evgeny
updated 2016-07-29 02:22:40 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

I use approximately the following configuration for uwsgi (I use .ini file to start uwsgi with):

 [uwsgi]
socket = /var/uwsgi/askbot.sock
user = www-data
chdir = <django project directory>          #directory that has settings.py file.
logto = /var/log/uwsgi/askbot.err
pidfile =  /var/uwsgi/askbot.pid
pythonpath = <parent of django project directory>
pythonpath = <django project directory>
virtualenv = <path to python virtual environment>
env = DJANGO_SETTINGS_MODULE=<project dir name>.settings
module = django.core.handlers.wsgi:WSGIHandler()
env = LC_ALL=en_US.UTF-8
threads = 1
workers = 4
master = true
max-requests = 1000
harakiri = 120
buffer-size = 24576
Evgeny's avatar
13.2k
Evgeny
answered 2016-07-29 02:15:10 -0500, updated 2016-07-29 02:15:28 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks @evegeny for great help and support.. It help me lot cheers :)

gopalraha's avatar gopalraha (2016-08-02 11:46:08 -0500) edit
add a comment see more comments