Uwsgi logger: cannot find log file

I am using nginx with uwsgi. in the uwsgi configuration file, whenever I use the logger tag, I get a "could not find the log file" error.

Here is the entry from my configuration file: nonok file: /tmp/uwsgi-us.log nonok (?! HTTP / 1. \ D 200)

Any pointer here?

Thanks.

+7
logging uwsgi
source share
1 answer

You need to enable the "logfile" plugin with a line like plugins = logfile or plugins = python,logfile .

+9
source share

All Articles