Add notes on filetype hooks
Anirudh Oppiliappan x@icyphox.sh
Mon, 16 Aug 2021 10:11:39 +0530
1 files changed,
12 insertions(+),
0 deletions(-)
jump to
M
readme
→
readme
@@ -9,6 +9,7 @@ · Single-user
· Only handles file upload. Serving is left to the reverse proxy. · Bring your own index.html (-index flag) · Requires a key to upload. Change the default! +· Filetype hooks. (See HOOKS) USAGE@@ -28,3 +29,14 @@ -url string
url for fsrv to serve files (default "localhost") Sample index.html is provided. Edit as required. + + +HOOKS + +Hooks can be defined in the 'hooks/' directory for specific filetypes. +These can be written in any language, provided the file is executable, +and accepts one argument: the file to execute against. + +For example: the hooks/7z.sh file will run against all 7z files, and will +recieve the filename as an argument ($1). The filetype is determined by +parsing magic bytes, and not by file extension.