go-fastdfs/nginx/README.md
2019-05-30 14:39:03 +08:00

9 lines
301 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 注意点:
```
一、如果不知道文件大小时,需设置
client_max_body_size 0;
二、如果要开启tus并使用nginx反向代理,需要设置proxy_redirect
并且重定向
proxy_redirect ~/(\w+)/big/upload/(.*) /$1/big/upload/$2; #继点续传一定要设置(注意)
```