From 0c727a1ea54db8b179f5bc332ffcff8f95a9a03c Mon Sep 17 00:00:00 2001 From: David Pacheco Date: Wed, 29 Jun 2022 16:02:42 -0700 Subject: [PATCH 1/2] example config file should point to downloaded console assets --- nexus/examples/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus/examples/config.toml b/nexus/examples/config.toml index b677fbafe5..95ff0974ea 100644 --- a/nexus/examples/config.toml +++ b/nexus/examples/config.toml @@ -4,7 +4,7 @@ [console] # Directory for static assets. Absolute path or relative to CWD. -static_dir = "nexus/static" # TODO: figure out value +static_dir = "out/console-assets" cache_control_max_age_minutes = 10 session_idle_timeout_minutes = 60 session_absolute_timeout_minutes = 480 From 42f16d63c085fba586919fa9d3b6aeb4348f8109 Mon Sep 17 00:00:00 2001 From: David Pacheco Date: Wed, 29 Jun 2022 16:25:02 -0700 Subject: [PATCH 2/2] update docs to reflect it --- docs/how-to-run-simulated.adoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/how-to-run-simulated.adoc b/docs/how-to-run-simulated.adoc index 5632017dcf..0a1b4a086c 100644 --- a/docs/how-to-run-simulated.adoc +++ b/docs/how-to-run-simulated.adoc @@ -137,5 +137,7 @@ Dec 02 18:00:01.093 DEBG registered endpoint, path: /producers, method: POST, lo ... ---- -Once everything is up and running, you can use `curl` directly to hit either of -the servers. But it's easier to use the xref:cli.adoc[`oxide` CLI]. +Once everything is up and running, you can use the system in a few ways: + +* Use the browser-based console. The Nexus log output will show what IP address and port it's listening on. This is also configured in the config file. If you're using the defaults, you can reach the console at `http://127.0.0.1:12220/orgs`. Depending on the environment where you're running this, you may need an ssh tunnel or the like to reach this from your browser. +* Use the xref:cli.adoc[`oxide` CLI].