mirror of
https://github.com/openziti/zrok.git
synced 2025-04-04 12:52:03 +02:00
Merge pull request #480 from openziti/frontdoor_vanity_names
expect the unique-name option in reserved share wrappers
This commit is contained in:
commit
f73d6860a6
2
docker/compose/.gitignore
vendored
2
docker/compose/.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
.env
|
.env
|
||||||
compose.override.yml
|
*compose.override.yml
|
@ -38,6 +38,7 @@ services:
|
|||||||
STATE_DIRECTORY: /mnt # zrok homedir in container
|
STATE_DIRECTORY: /mnt # zrok homedir in container
|
||||||
|
|
||||||
# most relevant options
|
# most relevant options
|
||||||
|
ZROK_UNIQUE_NAME: # name is used to construct frontend domain name, e.g. "myapp" in "myapp.share.zrok.io"
|
||||||
ZROK_BACKEND_MODE: # web, caddy, drive, proxy
|
ZROK_BACKEND_MODE: # web, caddy, drive, proxy
|
||||||
ZROK_TARGET: # backend target, is a path in container filesystem unless proxy mode
|
ZROK_TARGET: # backend target, is a path in container filesystem unless proxy mode
|
||||||
ZROK_INSECURE: # "--insecure" if proxy target has unverifiable TLS server certificate
|
ZROK_INSECURE: # "--insecure" if proxy target has unverifiable TLS server certificate
|
||||||
|
@ -22,6 +22,13 @@ When the project runs it will:
|
|||||||
```bash title=".env"
|
```bash title=".env"
|
||||||
ZROK_ENABLE_TOKEN="8UL9-48rN0ua"
|
ZROK_ENABLE_TOKEN="8UL9-48rN0ua"
|
||||||
```
|
```
|
||||||
|
1. Name the Share
|
||||||
|
|
||||||
|
This unique name becomes part of the domain name of the share, e.g. `https://my-prod-app.in.zrok.io`. A random name is generated if you don't specify one.
|
||||||
|
|
||||||
|
```bash title=".env"
|
||||||
|
ZROK_UNIQUE_NAME="my-prod-app"
|
||||||
|
```
|
||||||
|
|
||||||
1. Run the Compose project to start sharing the built-in demo web server. Be sure to `--detach` so the project runs in the background if you want it to auto-restart when your computer reboots.
|
1. Run the Compose project to start sharing the built-in demo web server. Be sure to `--detach` so the project runs in the background if you want it to auto-restart when your computer reboots.
|
||||||
|
|
||||||
|
@ -89,6 +89,14 @@ Save the enable token from the zrok console in the configuration file.
|
|||||||
ZROK_ENABLE_TOKEN="14cbfca9772f"
|
ZROK_ENABLE_TOKEN="14cbfca9772f"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Name your Share
|
||||||
|
|
||||||
|
This unique name becomes part of the domain name of the share, e.g. `https://my-prod-app.in.zrok.io`. A random name is generated if you don't specify one.
|
||||||
|
|
||||||
|
```bash title="/opt/openziti/etc/zrok/zrok-share.env"
|
||||||
|
ZROK_UNIQUE_NAME="my-prod-app"
|
||||||
|
```
|
||||||
|
|
||||||
## Use Cases
|
## Use Cases
|
||||||
|
|
||||||
You may change the target for the current backend mode, e.g. `proxy`, by editing the configuration file and restarting the service. The reserved subdomain will remain the same.
|
You may change the target for the current backend mode, e.g. `proxy`, by editing the configuration file and restarting the service. The reserved subdomain will remain the same.
|
||||||
|
@ -110,6 +110,10 @@ case "${ZROK_BACKEND_MODE}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
[[ -n "${ZROK_UNIQUE_NAME:-}" ]] && {
|
||||||
|
ZROK_CMD+=" --unique-name ${ZROK_UNIQUE_NAME}"
|
||||||
|
}
|
||||||
|
|
||||||
ZROK_CMD+=" --backend-mode ${ZROK_BACKEND_MODE} ${ZROK_TARGET}"
|
ZROK_CMD+=" --backend-mode ${ZROK_BACKEND_MODE} ${ZROK_TARGET}"
|
||||||
|
|
||||||
if [[ -n "${ZROK_SHARE_OPTS:-}" ]]; then
|
if [[ -n "${ZROK_SHARE_OPTS:-}" ]]; then
|
||||||
|
@ -56,7 +56,7 @@ ZROK_BACKEND_MODE="proxy"
|
|||||||
#ZROK_VERBOSE="--verbose"
|
#ZROK_VERBOSE="--verbose"
|
||||||
|
|
||||||
# you MAY set additional command-line options for the share; see "zrok reserve public --help" for hints
|
# you MAY set additional command-line options for the share; see "zrok reserve public --help" for hints
|
||||||
# WARNING: changing this value requires provisioning a new frontend URL
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
# NOTE: basic auth and oauth are mutually exclusive
|
# NOTE: basic auth and oauth are mutually exclusive
|
||||||
ZROK_SHARE_OPTS=""
|
ZROK_SHARE_OPTS=""
|
||||||
|
|
||||||
@ -64,20 +64,25 @@ ZROK_SHARE_OPTS=""
|
|||||||
## ZROK FRONTEND
|
## ZROK FRONTEND
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# you MAY customize the share token that is used to construct the reserved subdomain; if not set a random
|
||||||
|
# subdomain is reserved
|
||||||
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
|
#ZROK_UNIQUE_NAME=""
|
||||||
|
|
||||||
# you MAY set one OAuth2/OIDC provider; "google" and "github" are valid for the default instance api.zrok.io
|
# you MAY set one OAuth2/OIDC provider; "google" and "github" are valid for the default instance api.zrok.io
|
||||||
# WARNING: changing this value requires provisioning a new frontend URL
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
# NOTE: basic auth and oauth are mutually exclusive
|
# NOTE: basic auth and oauth are mutually exclusive
|
||||||
#ZROK_OAUTH_PROVIDER="google"
|
#ZROK_OAUTH_PROVIDER="google"
|
||||||
|
|
||||||
# you MAY restrict access to one or more email addresses or domains; must be a space-separate list
|
# you MAY restrict access to one or more email addresses or domains; must be a space-separate list
|
||||||
# WARNING: changing this value requires provisioning a new frontend URL
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
#ZROK_OAUTH_EMAILS="bob@acme.example.com alice@forge.example.com @corp.example.com"
|
#ZROK_OAUTH_EMAILS="bob@acme.example.com alice@forge.example.com @corp.example.com"
|
||||||
|
|
||||||
# you MAY require a password with HTTP basic authentication
|
# you MAY require a password with HTTP basic authentication
|
||||||
# WARNING: changing this value requires provisioning a new frontend URL
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
# NOTE: basic auth and oauth are mutually exclusive
|
# NOTE: basic auth and oauth are mutually exclusive
|
||||||
#ZROK_BASIC_AUTH=""
|
#ZROK_BASIC_AUTH=""
|
||||||
|
|
||||||
# set if self-hosting zrok and not using only the default frontend name 'public'; must be a space-separated list
|
# set if self-hosting zrok and not using only the default frontend name 'public'; must be a space-separated list
|
||||||
# WARNING: changing this value requires provisioning a new frontend URL
|
# WARNING: changes take effect the next time the frontend URL is reserved
|
||||||
#ZROK_FRONTENDS="public"
|
#ZROK_FRONTENDS="public"
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
from zrok.environment.root import Root
|
|
||||||
import openziti
|
import openziti
|
||||||
|
from zrok.environment.root import Root
|
||||||
|
|
||||||
|
|
||||||
class Listener():
|
class Listener():
|
||||||
shrToken: str
|
shrToken: str
|
||||||
|
Loading…
Reference in New Issue
Block a user