2012-11-15 186 views
-1

我nginx.conf:nginx的WebDAV服務器

location ~ ^/api/(.*)$ { 
    alias /home/username/apidav/$remote_user/$1; 

    client_body_temp_path  /var/www/path/; 
    client_max_body_size  50m; 
    dav_methods     PUT DELETE MKCOL;# COPY MOVE; 
    create_full_put_path  on; 
    dav_access     user:rw group:rw all:r; 
    dav_ext_methods    PROPFIND OPTIONS; 
    auth_request /api_auth; 
} 

location /api_auth { 
    internal; 
    proxy_pass http://www.domain.ru/accounts/api_auth/; 
    proxy_pass_request_body off; 
    proxy_set_header Content-Length ""; 
    proxy_set_header X-Original-URI $request_uri; 
} 

捲曲-T的test.txt的 'http://格特:[email protected]/api/' 捲曲:(56) Recv失敗:連接被同級重置?

爲什麼?

回答