You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pomerium Routes Portal allows a user to see all the routes they have access to. It is available on any domain frontend by Pomerium at the special `/.pomerium/routes` endpoint.
9
+
The Pomerium Routes Portal allows a user to see all the routes they have access to and easily navigate or connect to them.
10
+
The Routes Portal is personalized for each user based their authorization to the configured routes.
11
+
For non-HTTP routes, such as SSH or plain TCP connections, the portal provides corresponding Pomerium CLI commands that can be used to connect to the resources.
12
+
13
+
We recommend using the Routes Portal to help onboard new users to Pomerium and to provide a central location for users to access all their resources.
14
+
15
+
## Ways of Accessing the Routes Portal
16
+
17
+
The Routes Portal is available in the following ways:
18
+
*[**Web Page**](#web-page) - Generally useful for quickly navigating to available web applications or identifying non-HTTP CLI commands
19
+
*[**Desktop Client**](#desktop-client) - Best for setting up non-HTTP connections such as SSH or databases
20
+
*[**CLI**](#cli) - Can be used programmatically to list routes and then connect to them
21
+
*[**JSON API**](#json-api) - Can be used to integrate with your own systems and processes
22
+
23
+
:::note Identifying Your Pomerium Domain
24
+
The Routes Portal is available on all Pomerium cluster domains.
25
+
New users should contact their Pomerium administrator to identify their organization's Pomerium domain.
26
+
The domain could be a Pomerium provided domain such as `curious-cat-9999.pomerium.app` or a custom domain.
27
+
:::
28
+
29
+
### Web Page
30
+
31
+
The web page version of the Routes Portal is accessible via a web browser at `https://<your-pomerium-domain>/.pomerium/routes`.
32
+
Accessing the page when not authenticated will redirect you to the configured Identity Provider for authentication.
33
+
Once logged in, you will see a list of all the routes you have access to.
This data is also available as JSON at `/.pomerium/api/v1/routes`.
37
+
### Desktop Client
38
+
39
+
The Pomerium Desktop Client can automatically create connections using the Routes Portal.
40
+
While static route lists can be exported, shared, and imported by users looking to set up their Pomerium Desktop Client, the portal provides a more dynamic way of loading available route configuration.
41
+
After providing your Pomerium cluster domain, the Desktop Client will automatically load all the routes you have access to.
42
+
You may optionally specific a tag for the loaded routes to identify the ones created by this process.
43
+
44
+
:::note Updating Routes in the Desktop Client
45
+
The Desktop Client does not automatically update the routes list when changes are made to the Pomerium configuration.
46
+
An updated routes list can be loaded by performing the same process again.
The Pomerium CLI can list routes via the `routes list` subcommand:
54
+
55
+
```bash
56
+
pomerium-cli routes list https://<your-pomerium-domain>
57
+
```
58
+
59
+
### JSON API
60
+
61
+
Accessible via a JSON API at `https://<your-pomerium-domain>/.pomerium/api/v1/routes`
14
62
15
63
```json
16
64
{
@@ -34,16 +82,23 @@ This data is also available as JSON at `/.pomerium/api/v1/routes`.
34
82
}
35
83
```
36
84
37
-
### CLI
38
85
39
-
The Pomerium CLI can list routes via the `routes list` subcommand:
86
+
## FAQ
40
87
41
-
```bash
42
-
pomerium-cli routes list https://curious-cat-9999.pomerium.app
43
-
```
88
+
### Is the Routes Portal publicly available?
89
+
Yes, the Routes Portal is publicly available, but only authenticated users will be able to see the routes they have access to.
90
+
Unauthenticated users will be forced to authenticate.
44
91
45
-
### Desktop Client
92
+
### Can I disable the Routes Portal?
93
+
No, the Routes Portal is a core feature of Pomerium and cannot be disabled. If you have concerns about the security of the portal, please contact [email protected].
46
94
47
-
The Pomerium Desktop Client can automatically create connections using the Routes Portal.
95
+
### Can I customize the Routes Portal?
96
+
The routes which are displayed in the Routes Portal are based on the user's authorization and can be controlled by modifying the applied Pomerium policies for each given route.
97
+
If you are interested in further customization, please contact [email protected]
0 commit comments