Files
resty_functions/prod/upload
木逸辰 3f98d5825d fix upload file extract issue, add more test (#17)
* fix upload file extract issue, add more test

* uncomment test
2021-09-09 11:13:07 +08:00
..
2021-09-07 21:54:52 +08:00
2021-08-28 22:01:00 +08:00

put upload.lua into:

/usr/local/opt/openresty/nginx/resty_funcs

post file:

$ curl --location --request POST 'localhost/upload' \
--form '=@"/Users/weli/works/task_server/src/test/resources/file_example_JPG_100kB.jpeg"'

nginx config

/usr/local/etc/openresty/nginx.conf
location /upload {
   content_by_lua_file /usr/local/opt/openresty/nginx/resty_funcs/upload.lua;
}

enable log:

error_log  /usr/local/etc/openresty/logs/error.log;