mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
doc unique names
This commit is contained in:
parent
c527340c97
commit
84b23f2c23
@ -1,5 +1,9 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v0.4.45
|
||||
|
||||
FIX: Document unique names
|
||||
|
||||
## v0.4.44
|
||||
|
||||
FIX: Fix for goreleaser build action to align with changed ARM64 build path.
|
||||
|
@ -1,9 +1,10 @@
|
||||
---
|
||||
sidebar_position: 10
|
||||
---
|
||||
|
||||
# Reserved Shares
|
||||
|
||||
By default a `public` or `private` share is assigned a _share token_ when you create a share using the `zrok share` command. The `zrok share` command is the bridge between your local environment and the users you are sharing with. When you terminate the `zrok share`, the bridge is eliminated and the _share token_ is deleted. If you run `zrok share` again, you will be allocated a brand new _share token_.
|
||||
By default, a `public` or `private` share is assigned a _share token_ when you create a share using the `zrok share` command. The `zrok share` command is the bridge between your local environment and the users you are sharing with. When you terminate the `zrok share`, the bridge is eliminated and the _share token_ is deleted. If you run `zrok share` again, you will be allocated a brand new _share token_.
|
||||
|
||||
You can use a `reserved` share to persist your _share token_ across multiple runs of the `zrok share` bridge. When you use a `reserved` share, the share token will not be deleted between multiple runs of `zrok share`.
|
||||
|
||||
@ -12,3 +13,19 @@ To use a `reserved` share, you will first run the `zrok reserve` command to crea
|
||||
This pattern works for both `public` and `private` shares, and for all resource types supported by `zrok`.
|
||||
|
||||
To delete your `reserved` share use the `zrok release` command or click the delete button in the share's _Actions_ tab in the web console.
|
||||
|
||||
## Unique Names
|
||||
|
||||
The default is to generate a random _share token_ and you may specify a _unique name_.
|
||||
|
||||
This reserves public share token "myshare."
|
||||
|
||||
```bash title="Reserve with the Command Line"
|
||||
zrok reserve public 80 --unique-name "myshare"
|
||||
```
|
||||
|
||||
This shares `127.0.0.1:80` as `https://myshare.zrok.example.com` where `https://{token}.zrok.example.com` is the frontend's template.
|
||||
|
||||
```bash title="Share a Reserved Token"
|
||||
zrok share reserved "myshare"
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user