우분투 12.04에서 uwsgi 서비스를 설정했습니다. 내가 sudo service uwsgi start
을 실행하면uwsgi 시작이 실패하지만 오류가 기록되지 않습니다.
[uwsgi]
# this is the path to the virtualenv
home = /var/www/api/webservice/current/
# this will point to the same file
paste = config:/var/www/api/webservice/production.ini
socket = /tmp/my_api.socket
gid = www-data
uid = www-data
logdate = true
master = true
harakiri = 30
limit-as = 1536
reload-on-as = 1200
no-orphans = true
log-x-forwarded-for = true
threads = 15
workers = 2
stats = /tmp/my_api_stats.socket
listen = 400
내가 "실패"얻을 : 여기
내가 사용하고있는 사용자 지정 설정 파일입니다. 그러나 /var/log/uwsgi/app/my_api.log에 로그인해도 오류 메시지가 표시되지 않습니다.어떻게 디버깅 할 수 있습니까?