-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,23 +17,5 @@ server. It allows users to access services that firewalls would otherwise | |
restrict or prevent. In our case, it allows us to authenticate and authorize | ||
users using only their SSH keypair. | ||
|
||
Ready for a demo? Run this command to access our [pico web UI](/ui#web-ui): | ||
|
||
```bash | ||
ssh -L 1337:localhost:80 -N [email protected] | ||
``` | ||
|
||
What is this command? This command initiates an SSH local port forward which | ||
redirects traffic from a local port on the client machine to a specified port on | ||
a remote server via an SSH connection. In this case, it connects to our private | ||
site hosted on [pgs.sh](/pgs). | ||
|
||
Don't worry if the above CLI command doesn't respond with anything, that means | ||
it worked. | ||
|
||
Then open your browser: | ||
|
||
<a href="http://localhost:1337/tunnels" class="btn-link">localhost:1337/tunnels</a> | ||
|
||
Here is the source code for the | ||
[tunkit library](https://github.com/picosh/tunkit). |