While you can specify Micetro server URLs when launching a Gateway
container, you can also add them directly through Gateway's
config.json
file before starting a container. The config.json file
is located in your workspace.
Note: If you're using a custom workspace, make sure that you mount the workspace
before starting the container. Otherwise, the Micetro URLs will not be picked
up by Gateway.
To add Micetro URLs to the config.json
file, simply add a new entry for
Micetro containing the alias and the URL for Micetro server as follows:
{
"micetro": {
"urls": [
[
"alias",
"https://<micetro.url>"
]
]
}
}
You can also use Gateway with multiple Micetro servers at multiple URLs. To do so, configure the addresses as follows:
{
"micetro": {
"urls": [
[
"alias-1",
"https://<micetro_1.url>"
],
[
"alias-2",
"https://<micetro_2.url>"
]
]
}
}
If multiple Micetro URLs are configured, users will be asked to which Micetro instance they want to connect when logging in on the Login page.