duf
```
-...or specify which folder you want to serve:
+...or specify which folder you want to serve.
```
duf folder_name
```
+Only serve static files, disable upload and delete operations
+```
+duf --static
+```
+
Finally, run this command to see a list of all available option
let arg_static = Arg::new("static")
.long("static")
- .help("Only serve static files, not allowed to upload or delete file");
+ .help("Only serve static files, disable upload and delete operations");
let arg_auth = Arg::new("auth")
.short('a')