HTTP expect/continue

Andrej Zverev andrey.zverev at electro-com.ru
Wed Aug 13 23:24:11 MSD 2008


Добрый день.

Имеется клиент и сервер (nginx)

На сервере сконфигурирован Location на котором стоит basic auth
location / {
    auth_basic      "Storage Area";
    auth_basic_user_file    /tmp/test.pswd;
    autoindex on;
    client_max_body_size    5200m;
dav_methods  PUT DELETE MKCOL COPY MOVE;
}

Далее лог( упрощенный обмена между клиентом и сервером)

CLIENT:
PUT /_testfile0968.jpg HTTP/1.1
Content-Type: application/octet-stream
Host: 10.17.16.94:81
Content-Length: 1168843
Expect: 100-continue
Connection: Keep-Alive

SERVER:
HTTP/1.1 100 Continue

CLIENT:
Начилась заливка данных, так как разрешили.

SERVER:
HTTP/1.1 401 Unauthorized
Server: nginx/0.7.6
Date: Tue, 12 Aug 2008 07:58:30 GMT
Content-Type: text/html
Content-Length: 194
Connection: keep-alive
WWW-Authenticate: Basic realm="Storage Area"

<html>
<head><title>401 Authorization Required</title></head> <body 
bgcolor="white">
<center><h1>401 Authorization Required</h1></center> 
<hr><center>nginx/0.7.6</center> </body> </html>

В конце такой сессии конечно nginx уверяет клиента в том, что он не 
прав, а клиент не понимает. Как workaround вставляем в хередер сразу 
Authorization не дожидаясь такого.


WBR,
Andrej Zverev






More information about the nginx-ru mailing list