Skip to content

Commit

Permalink
examples: Add an example ssh config for remote usage
Browse files Browse the repository at this point in the history
  • Loading branch information
amznpurple committed Nov 9, 2022
1 parent f03528a commit 758cc82
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/ssh.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# run yesiscan on a remote host over ssh
# put this in your ~/.ssh/config
# then ssh yesiscan
# then run ./yesiscan web
# in your local webbrowser you can connect to http://localhost:8000
Host yesiscan
Hostname <your hostname over there>
User <your username>

LocalForward 8000 localhost:8000
GSSAPIAuthentication no
RequestTTY yes
RemoteCommand screen -xRR

0 comments on commit 758cc82

Please sign in to comment.