我想将图像文件发送到我的Nginx服务器(ubuntu机器)。
我将以下代码添加到nginx.conf:
location /upload {
auth_basic "Restricted Upload";
auth_basic_user_file basic.htpasswd;
limit_except POST { deny all; }
client_body_temp_path /tmp/;
client_body_in_file_only on;
client_body_buffer_size 128K;
client_max_body_size 1000M;
proxy_pass_request_headers on;
proxy_set_header X-FILE $request_body_file;
proxy_set_body off;
proxy_redirect off;
proxy_pass http://backend/file;
}
添加其他代码后,重新启动serivce失败。
我哪里错了?
谢谢!