Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
post_action status
Понадобилось мне отрабатывать некий скрипт по окончании закачки файла,
сделал я конструкцию вида, упрощенно ниже
location /download {
rewrite ^ /uwsgi/download.py last;
location ~ /download/storage {
internal;
post_action /uwsgi/last.py;
}
}
и вижу постоянно в error.log сообщение вида
upstream sent neither valid HTTP/1.0 header nor "Status" header line
while reading response header from upstream, client: X server:
localhost, request: "GET /uwsgi/debug.py?id=X HTTP/1.1", upstream:
"uwsgi://unix:/tmp/uwsgi.sock:" .....
включил дебаг, вроде все солидно отдает, и сразу же печатает эту ошибку
2012/03/09 14:52:47 [debug] 15114#0: epoll: fd:19 ev:0005 d:00007F7E4D178311
2012/03/09 14:52:47 [debug] 15114#0: *2 http upstream request:
"/uwsgi/last.py?"
2012/03/09 14:52:47 [debug] 15114#0: *2 http upstream process header
2012/03/09 14:52:47 [debug] 15114#0: *2 malloc: 0000000001437550:4096
2012/03/09 14:52:47 [debug] 15114#0: *2 recv: fd:19 45 of 4096
2012/03/09 14:52:47 [debug] 15114#0: *2 http uwsgi status 200 "200 OK"
2012/03/09 14:52:47 [debug] 15114#0: *2 http uwsgi header:
"Content-Type: text/plain"
2012/03/09 14:52:47 [debug] 15114#0: *2 http uwsgi header done
2012/03/09 14:52:47 [error] 15114#0: *2 upstream sent neither valid
HTTP/1.0 header nor "Status" header line while reading response header
from upstream
last.py упростил до:
def last_handler(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
# /usr/sbin/nginx -V
nginx version: nginx/1.1.16
built by gcc 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC)
TLS SNI support enabled
configure arguments: --with-debug --user=fileservices
--group=fileservices --prefix=/usr/share/nginx
--sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--http-client-body-temp-path=/var/lib/fileservices/tmp/client_body
--http-proxy-temp-path=/var/lib/fileservices/tmp/proxy
--http-fastcgi-temp-path=/var/lib/fileservices/tmp/fastcgi
--pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx
--with-http_ssl_module --with-http_realip_module
--with-http_addition_module --with-http_sub_module
--with-http_dav_module --with-http_flv_module
--with-http_gzip_static_module --with-http_stub_status_module
--with-http_perl_module --with-mail --with-mail_ssl_module
--with-http_secure_link_module --with-http_random_index_module
--with-http_xslt_module --with-pcre-jit --with-cc-opt='-O2 -g'
--add-module=/root/rpmbuild/SOURCES/ngx_http_upload_module
не посоветуете как с этим бороться? если надо могу залить error.log с
дебагом включенным
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|