mirror of
https://github.com/falk-werner/webfuse
synced 2025-12-05 06:02:04 +00:00
1.4 KiB
1.4 KiB
webfuse_provider command line options
Inject a remote filesystem via webfuse.
Usage
webfuse_provider -u <url> [-p <path>] [-a <cert_path>]
Options
| Short Option | Long Option | Argument | Description |
|---|---|---|---|
| -h | --help | - | print usage and exit |
| -v | --version | - | print version an exit |
| -p | --path | path | path of local filesystem to inject (default: .) |
| -u | --url | url | url of webfuse server |
| -a | --ca-path | path | path of ca file |
| -t | --token | token | authentication token (overrides WEBFUSE_TOKEN) |
Environment variables
| Variable | Description |
|---|---|
| WEBFUSE_TOKEN | Default value of webfuse token |
Examples
- inject current directory:
webfuse_provider -u ws://localhost/ - inject a given directory:
webfuse_provider -u ws://localhost/ -p /path/to/directory - inject current directory to port 8080:
webfuse_provider -u ws://localhost:8080/ - inject current directory via TLS:
webfuse_provider -u wss://localhost/ - inject current diectory via TLS using a specific ca:
webfuse_provider -u wss://localhost/ -a /path/to/server-cert.pem - inject current directory, authenticate via token:
webfuse_provider -u wss://localhost/ -t my_token