views:

119

answers:

1

i m using django with fastcgi + nginx.I want to know were the logs (error) are stored in this case

A: 

errors are stored in nginx log file. you can specify it in root of nginx config file.

error_log  /var/log/nginx/nginx_error.log  warn;
syava