diff --git a/docs/remarkable/setup.md b/docs/remarkable/setup.md index 0358f76c..5edf6540 100644 --- a/docs/remarkable/setup.md +++ b/docs/remarkable/setup.md @@ -85,7 +85,7 @@ Steps: ``` TLS_KEY=proxy.key TLS_CERT=proxy.crt - STORAGE_URL=https://local.apphost.com + STORAGE_URL=https://local.appspot.com ``` - modify `/etc/hosts` but use the rmfakecloud's ip instead of 127.0.0.1 diff --git a/internal/config/config.go b/internal/config/config.go index 01a19842..695eceaa 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -220,7 +220,7 @@ Environment Variables: General: %s Secret for signing JWT tokens - %s Url the tablet can resolve (default: https://local.apphost.com) + %s Url the tablet can resolve (default: %s) needs to be set to the hostname or proxy if behind a proxy especially if you want other tools to work (eg rmapi) @@ -249,6 +249,7 @@ myScript hwr (needs a developer account): `, envJWTSecretKey, EnvStorageURL, + DefaultHost, EnvLogLevel, EnvLogFormat, envPort,