Duf is a fully functional file server.
-
+
## Features
- Serve static files
- Download folder as zip file
- Search files
-- Upload files and folders
+- Upload files and folders (Drag & Drop)
- Delete files
- Basic authentication
- Upload zip file then unzip
duf folder_name
```
-Allow all operations such as upload, delete
+Listen on all Interfaces and port 3000
```
+duf -b 0.0.0.0 -p 3000
+```
+
+Allow all operations such as upload, delete
+
+```sh
duf --allow-all
+# or
+duf -A
```
-Only allow upload operations
+
+Only allow upload operation
```
duf --allow-upload
```
-Use http authentication
+Serve a single page application (SPA)
```
-duf --auth user:pass
+duf --render-spa
```
### Api