Update README.md

This commit is contained in:
cy33hc
2023-04-14 21:57:28 -07:00
committed by GitHub
parent ed3e2c049b
commit 36e4761241
+3 -5
View File
@@ -30,11 +30,13 @@ To distinguish between FTP, SMB, NFS, WebDAV or HTTP, the URL must be prefix wit
- The url format for NFS is
```
nfs://hostname[:port]/export_path[?arg=val[&arg=val]*]
nfs://hostname[:port]/export_path[?uid=<UID>&gid=<GID>]
- hostname can be the textual hostname or an IP address. hostname is required
- port is optional and defaults to 2049 if not provided
- export_path is required
- uid is the UID value to use when talking to the server. Defaults to 65534 if not specified.
- gid is the GID value to use when talking to the server. Defaults to 65534 if not specified.
Special characters in 'path' are escaped using %-hex-hex syntax.
@@ -45,10 +47,6 @@ To distinguish between FTP, SMB, NFS, WebDAV or HTTP, the URL must be prefix wit
nfs://192.168.0.1/my?path?uid=1000&gid=1000
must be escaped as
nfs://192.168.0.1/my%3Fpath?uid=1000&gid=1000
Arguments supported are :
uid=<int> : UID value to use when talking to the server. Defaults to 65534 if not specified.
gid=<int> : GID value to use when talking to the server. Defaults to 65534 if not specified.
```
- The url format for WebDAV is