http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
| Syntax: | client_max_body_size size; |
|---|---|
| Default: |
client_max_body_size 1m;
|
| Context: | http, server, location |
这次不能忘记了啊
http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
| Syntax: | client_max_body_size size; |
|---|---|
| Default: |
client_max_body_size 1m;
|
| Context: | http, server, location |
这次不能忘记了啊
# 省略其他配置
http {
# 省略其他配置
server {
# 可用的dns服务器地址
resolver 10.143.22.118;
# 监听端口
listen 1080;
location / {
# 一般不需要修改
proxy_pass http://$http_host$request_uri;
}
}
}
# 省略其他配置